构建PyQt以与Qt5一起工作



当构建/安装PyQt(从源代码或使用pip)时,我如何指定本地Qt5安装的路径?

我使用以下命令从源代码(qt-everywhere-opensource-src-5.0.2.tar.gz)构建Qt5:

wget http://download.qt-project.org/official_releases/qt/5.0/5.0.2/single/qt-everywhere-opensource-src-5.0.2.tar.gz
tar -xvf qt-everywhere-opensource-src-5.0.2.tar.gz
cd qt-everywhere-opensource-src-5.0.2
./configure -prefix $PWD/qtbase -opensource -nomake tests
make -j 4

如果我把cd变成qtbase,我看到:

bin/
dist/
doc/
examples/
imports/
include/
lib/
etc ...

查看PyQt4安装说明,我找不到指定Qt安装位置的标志或选项。

有没有办法告诉PyQt4在哪里找到Qt5?

注意:我没有root权限,需要在本地安装

Configure PyQt4:

python configure.py --qmake <path to your qt5 qmake>

相关内容

  • 没有找到相关文章

最新更新