gpt4 book ai didi

Python 找不到自定义 PyQt5

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:59:49 33 4
gpt4 key购买 nike

由于 ubuntu 存储库中的官方 pyqt5 安装似乎缺乏对 QtQuick 的支持,我尝试从源代码安装 pyqt5。安装本身似乎工作正常,但是当运行使用 PyQt5 的 python 脚本时,python 提示它找不到 PyQt。

构建sip 4.15.5后,我下载了PyQt5.2。它应该与我的 Qt 版本兼容(qmake --version 的输出):

QMake version 3.0
Using Qt version 5.2.0 in /opt/qt5.1.1/5.2.0/gcc_64/lib

我跑了

pyqt 的configure.py 的输出可以在这里找到:https://gist.github.com/Mitmischer/8677889 .

pyqt 的安装输出可以在这里找到:https://gist.github.com/Mitmischer/8677780 .

sudo make install之后,我可以在/usr/lib/python3.3/site-packages中看到一个文件夹PyQt5,它是相当不错。但是,如果我运行 cat PyQt5/__init__.py,里面没有实际代码:

# Copyright (c) 2014 Riverbank Computing Limited <info@riverbankcomputing.com>
#
# This file is part of PyQt5.
#
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file. Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
#
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license. For more information contact
# info@riverbankcomputing.com.
#
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

是的,这就是该文件中的所有内容。我不知道它是否应该是那样的,但它对我来说看起来很奇怪。此外(ls PyQt5):

__init__.py               QtCore.so      QtGui.so         QtMultimediaWidgets.so  QtPositioning.so   QtQuick.so       Qt.so     QtTest.so     QtX11Extras.so
_QOpenGLFunctions_2_0.so QtDBus.so QtHelp.so QtNetwork.so QtPrintSupport.so QtSensors.so QtSql.so QtWebKit.so QtXmlPatterns.so
QtBluetooth.so QtDesigner.so QtMultimedia.so QtOpenGL.so QtQml.so QtSerialPort.so QtSvg.so QtWidgets.so uic/

看起来不像 python 。

正如其他地方所建议的,我(希望)适本地设置我的 pythonpath:

> echo $PYTHONPATH 
/usr/lib/python3.3/site-packages/

现在,如果我启动交互式 python3.3-session(或脚本),则找不到 PyQt5:

Python 3.3.2+ (default, Oct  9 2013, 14:50:09) 
[GCC 4.8.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from PyQt5 import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'PyQt5'
>>>

有没有其他人尝试从源代码安装 PyQt5?我该怎么做才能让 PyQt 工作?

最佳答案

您可能以某种方式弄乱了 PYTHONPATH。

我已经使用虚拟环境成功地构建、安装和使用了 PyQT。所以这里是如何使用 virtualenv 安装它。有很多教程,所以请阅读它。

因此安装python-virtualenvvirtualenvwrapper(至少在 Debian 上是这么叫的)。

mkvirtualenv -p /path/to/python3.3 name 
workon name
cd PyQtSource
configure
make
make install

要使用此环境,请执行以下操作:

workon name
python

关于Python 找不到自定义 PyQt5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21418560/

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