Can't import Qt and PySide in Python 3.4.2

1.4k views Asked by At

I have installed:

PySide with sudo apt-get install python3-pyside,

Qt-5.3, which is in /home/Qt/ (didn't knew yet PySide doesn't support that version) and

Qt-4.8.6 in /usr/local/Trolltech/Qt-4.8.6/

What I get when trying to import PySide or Qt:

ImportError: No module named Qt

ImportError: No module named PySide

I'm running Python 3.4.2 on Ubuntu 14.04 LTS and don't know freaking solution.

from PySide import QtCore returns

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'PySide'

What should I do to make import work?

0

There are 0 answers