有一段时间,我一直试图在Virtual (在PyQt4中完成的遗留项目) windows 10下安装。我从PyCharm开始使用包管理器。我也试过命令行。
C:\Users\jspada>pip install SIP
Collecting SIP
Could not find a version that satisfies the requirement SIP (from versions: )
No matching distribution found for SIP
C:\Users\jspada>pip install PyQt4
Collecting
我正在尝试在Windows上打包一个PyQt4应用程序。我尝试过使用cx_freeze和py2exe。但是,在使用cx_freeze时,当我尝试运行生成的可执行文件时,我得到了以下错误:
ImportError: No module named image
即使安装了PIL,也会出现这种情况。
当我使用py2exe时,我得到以下错误:
ImportError: No module named PyQt4
以下是cx_freeze的设置文件:
from cx_Freeze import setup, Executable
includes = ["sip","reque
我正在尝试将PyQt4导入Ubuntu上的pycharm。我使用sudo apt-get install python-qt4成功安装了PyQt4,并且可以在终端上导入PyQt4: ~$ python
Python 2.7.15+ (default, Nov 27 2018, 23:36:35)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import PyQt
我正在尝试运行的程序将在anaconda环境中导入以下包:
from PyQt4 import QtCore, QtGui
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PyQt4
我按照中的说明安装了PyQt4
但是,在安装之后,我得到了以下错误:
RuntimeError: qtutils is only compatible with version 2 of the PyQt4 API.W
我正在尝试导入以下语句。我的最终目标是生成一个单词云。
我在canopy的终端提示符下使用enathught canopy python 3.5.2,我运行了以下命令:
import matplotlib.pyplot as plt
from wordcloud import WordCloud, STOPWORDS
哪个返回了no module names 'pyQt4'
所以我试着安装那个!pip install 'pyQt4'
获取的输出:
Collecting pyqt4
Could not find a version that satisfies t
我和PyQt有点麻烦。我已经通过Homebrew安装了PyQt4和PyqQt5,并且我计划在我正在从事的特定项目中使用PyQt4。然而,我有一些奇怪的问题让它工作。
在一个模块中,我们将其命名为A,我使用这些导入:
from OpenGL.GL import *
from OpenGL.GLU import *
from PyQt4 import QtGui
from PyQt4.QtOpenGL import *
现在,PyQt4带有红色下划线,并带有“对PyQt4的未解析引用”。但是,此代码会运行。如果我将其更改为PyQt5,则不会有下划线:
from OpenGL.GL import *