Can I install the Ubuntu SDK along side with PyQt?

198 Views Asked by At

I installed the Ubuntu SDK and everything goes very well. Now I want to install PyQt just to mess around with it. PyQt comes with Qt Creator, but it was already installed by the Ubuntu SDK. How can I install PyQt in this conditions?

2

There are 2 best solutions below

0
On
1) QtCreator is a Qt/C++ developing IDE, so you may already have Qt intalled.
2) Downloads the corresponding's Pyqt, for example, if you have already 4.8.10 Qt installed, then try to download the PyQt 4.8.4.
3) Follow the readme instructor to have it installed.
1
On

If you use apt-get you could just use the command:

sudo apt-get install python-qt4

To test that this worked, open the python console and enter:

from PyQt4.QtGui import *

If this does not give any errors, it worked!