我使用brew安装了PyQt5,它似乎正确地结束了安装过程。
$ brew install pyqt5 --with-python3
问题在于我无法导入它:
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 23 2015, 02:52:03)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import PyQt5
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'PyQt5'
我从哪里开始寻找无效的原因?我以为它会使用我使用的brew命令自动添加到Python。
答案 0 :(得分:2)
可能的解决方案是使用以下方法查找安装路径:
brew info pyqt5
然后将其添加到Python路径中,您可以在此处找到解决方案:
Permanently add a directory to PYTHONPATH
此外,您的问题与此类似