我在Python中非常棒,现在我很难安装PyQt和PyQwt。
我搜索了许多网站的搜索方式,但我仍然无法摆脱这个问题。 现在我决定关注Christoph Gohlke's。 我成功使用pip来安装numpy wheel文件并可以在python中导入它,但它不适用于PyQt和PyQwt。
对于PyQt,当我使用此
通过cmd安装wheel文件时pip install PyQt4-4.11.4-cp27-none-win_amd64.whl
它出现
Requirement already satisfied (use --upgrade to upgrade): PyQt4==4.11.4 from file:///C:/Users/Mann/Downloads/PyQt4-4.11.4-cp27-none-win_amd64.whl in c:\python27\lib\site-packages
我认为安装可能成功,所以我尝试在Python2.7中导入PyQt4
import PyQt4
但它失败并出现错误
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import PyQt4
ImportError: No module named PyQt4
我也在&#34; Script&#34;中调用pip.exe。目录为https://stackoverflow.com/a/27909082/5041101,但它仍然相同。 请帮我摆脱这个。
谢谢
答案 0 :(得分:2)
您是否尝试过强制重新安装?
pip install --force-reinstall PyQt4-4.11.4-cp27-none-win_amd64.whl
或
pip install --upgrade --no-deps --force-reinstall PyQt4-4.11.4-cp27-none-win_amd64.whl