Como instalar PyQt no Ubuntu 12.04 com python 2.7?

Pode haver algumas perguntas semelhantes, comoeste, mas eu não encontrei nenhuma resposta para mim.

Eu tentei algumas maneiras de fazer isso:

sudo aptitude install python-qt4-dev python-sip4 python-sip4-dev

de:https://groups.google.com/forum/#!topic/mnemosyne-proj-devel/VQQzjhARWoA

Eu tentei:

sudo aptitude install python-qt4

de:http://www.saltycrane.com/blog/2008/01/how-to-install-pyqt4-on-ubuntu-linux/

Toda vez que após as instalações acima, recebi um erro:

$python2.7
Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import PyQt4
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named PyQt4

Eu também tentei instalá-lo a partir do PyQt4:http://www.riverbankcomputing.co.uk/software/pyqt/download e saborear de:http://www.riverbankcomputing.co.uk/software/sip/download

Então eu tenho erro para instalar o PyQt4:

$ sudo python configure.py --verbose
Determining the layout of your Qt installation...
/usr/bin/qmake -o qtdirs.mk qtdirs.pro
make -f qtdirs.mk
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_CORE_LIB -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4 -I. -o qtdirs.o qtdirs.cpp
qtdirs.cpp:1:28: fatal error: QCoreApplication: No such file or directory
compilation terminated.
make: *** [qtdirs.o] Error 1
Error: Failed to determine the layout of your Qt installation. Try again using
the --verbose flag to see more detail about the problem.

Minha pergunta é: Qual é a maneira correta e eficaz para instalar o PyQt4 no Ubuntu 12.04?

questionAnswers(2)

yourAnswerToTheQuestion