gpt4 book ai didi

python - 如何更新 PyQt5?

转载 作者:太空宇宙 更新时间:2023-11-03 18:00:56 25 4
gpt4 key购买 nike

我的 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:['', '/home/user/.pythonbrew/lib', '/usr/lib/python3.4', '/usr/lib/python3.4/plat-x86_64-linux-gnu', '/usr/lib/python3.4/lib-dynload', '/usr/local/lib/python3.4/dist-packages', '/usr/lib/python3/dist-packages']

PyQt5.__file__'/usr/lib/python3/dist-packages/PyQt5/init.py'

看来我的Python正在使用存储库中的版本,除非它是在make安装时安装的。

编辑#2:

似乎PYQT_VERSION_STR返回了PyQt5配置在make和make安装之前找到的Qt版本(!)。所以实际的问题似乎是我的 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 文件的内容:
别名 python=python3
别名 pip=pip3

最佳答案

编辑:

我一直假设在对你的问题的最初评论中提出的建议在某种程度上对你不起作用,所以我猜测你的系统上一定有第二个Python安装。但再次通读所有内容后,似乎您实际上并没有遵循所给出的所有提示。

看起来这只是 dist-packagessite-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 目录来整理内容。

关于python - 如何更新 PyQt5?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27697590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com