21

このような質問がいくつかあるかもしれませんが、私には答えが見つかりませんでした。

私はそれを行うためにいくつかの方法を試しました:

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

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

私は試した:

sudo aptitude install python-qt4

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

上記のインストールのたびにエラーが発生しました:

$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

また、PyQt4をダウンロードするソースからインストールしようとしました

次に、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.

私の質問は、Ubuntu 12.04 に PyQt4 をインストールする適切かつ効果的な方法は何ですか?

4

2 に答える 2

4

aws ubuntu (12.04 および 14.04) の場合:

sudo apt-get update
sudo apt-get install python-qt4
sudo apt-get install libxml2-dev libxslt1-dev python-dev
sudo apt-get install python-lxml
sudo apt-get install xvfb

このリンクを確認して、your-own-example.py を生成してください

DISPLAY=localhost:1.0 xvfb-run python your-own-example.py

出来上がり。

于 2015-08-13T01:56:15.370 に答える