我在我的Xubuntu(Voyager)上安装了明显较旧版本的PyQt5。当我打印PYQT_VERSION_STR
时,它显示:'5.2.1'
。我在这里下载了最新的 PyQt5 发布表格:http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-5.4/我配置了它,制作并安装了它,一切都按计划进行。但是,如果我再次打印PYQT_VERSION_STR
,它仍然输出'5.2.1'
.
如何告诉我的 python3.4 使用更新的版本?
(重新安装新版本不应该覆盖另一个版本吗?我不明白为什么它仍然将 5.2.1 显示为版本字符串。
编辑#1:
sys.path
:[''
PyQt5.__file__
'/usr/lib/python3/dist-packages/PyQt5/init.py'
因此,似乎我的python正在使用存储库中的版本,除非这是安装时安装它的位置。
编辑#2:
似乎PYQT_VERSION_STR
返回 Qt (!) 的版本,该版本是 PyQt5 配置在进行和安装之前发现的。所以实际问题似乎出在我的 Qt5 版本上,根据 PyQt5 python configure
的输出5.2.1
:
Querying qmake about your Qt installation...
Determining the details of your Qt installation...
This is the GPL version of PyQt 5.4 (licensed under the GNU General Public License) for Python 3.4.0 on linux.
Type 'L' to view the license.
Type 'yes' to accept the terms of the license.
Type 'no' to decline the terms of the license.
Do you accept the terms of the license? yes
Found the license file pyqt-gpl.sip.
Checking [...]
DBus v1 does not seem to be installed.
Qt v5.2.1 (Open Source) is being used.
The qmake executable is /usr/bin/qmake.
Qt is built as a shared library.
SIP 4.16.5 is being used.
The sip executable is /usr/bin/sip.
These PyQt5 modules will be built: QtCore, QtGui, QtNetwork, QtOpenGL,
QtPrintSupport, QtQml, QtQuick, QtSql, QtTest, QtWidgets, QtXml, QtDBus, _QOpenGLFunctions_2_0.
The PyQt5 Python package will be installed in /usr/lib/python3.4/site-packages.
PyQt5 is being built with generated docstrings.
PyQt5 is being built with 'protected' redefined as 'public'.
The Designer plugin will be installed in
/usr/lib/x86_64-linux-gnu/qt5/plugins/designer.
The qmlscene plugin will be installed in
/usr/lib/x86_64-linux-gnu/qt5/plugins/PyQt5.
The PyQt5 .sip files will be installed in /usr/share/sip/PyQt5.
pyuic5, pyrcc5 and pylupdate5 will be installed in /usr/bin.
The interpreter used by pyuic5 is /usr/bin/python3.
Generating the C++ source for the QtCore module...
Embedding sip flags...
Generating [...]
Re-writing
/home/xiaolong/Downloads/PyQt-gpl-5.4/examples/quick/tutorials/extending/chapter6-plugins/Charts/qmldir...
Generating the top-level .pro file...
Making the pyuic5 wrapper executable...
Generating the Makefiles...
所以 PyQt5 进入了正确的目录,但 Qt5 的实际版本早于 5.4。现在问题似乎变成了"如何更新我的Qt5版本?"除非我误解了这里的某些内容。
编辑#3:
sys.executable
输出 :
Python 3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.executable
'/usr/bin/python3'
>>>
编辑#4:
我的.bash_aliases
文件的内容:
alias python=python3
alias pip=pip3
编辑:
我一直假设在您的问题的最初评论中提出的建议对您不起作用,因此我猜测您的系统上必须安装第二个 python。但是在再次阅读所有内容后,似乎实际上您并没有遵循给出的所有提示。
看起来这只是dist-packages
与site-packages
的情况。在基于 Debian 的系统上,发行版提供的 python 软件包安装在 dist-packages
中,而用户安装的软件包通常安装在 site-packages
中。这样做是为了尽量减少破坏依赖于特定版本的 python 包的其他系统应用程序的机会。
PyQt5 配置脚本的输出显示您已将其安装到 site-packages
:
The PyQt5 Python package will be installed in /usr/lib/python3.4/site-packages.
但是该目录不会出现在您的sys.path
中,因此python无法从该位置导入软件包。
有几种方法可以解决这个问题,但有些方法比其他方法"更安全"。例如,您可以通过各种方式操作 python 路径,但这具有影响所有 python 应用程序(包括使用 python2 的应用程序)的重大缺点,因此最好避免使用。
由于依赖 PyQt-5.2.1 的系统应用程序可能很少,因此只需覆盖它应该是可以的。为此,请重新编译并安装 PyQt-5.4,方法是按如下方式配置:
python3 configure.py --destdir=/usr/local/lib/python3.4/dist-packages
或者,您可以卸载系统 PyQt5 软件包(使用 apt-get
或其他方式),并通过如下配置将其完全替换:
python3 configure.py --destdir=/usr/lib/python3/dist-packages
作为最后一步,您可能应该通过从/usr/lib/python3.4/site-packages
中删除多余的PyQt5
目录来整理事情。