Python3 找不到并导入 PyQt5
Python3 can't find and import PyQt5
我用 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。
一个可能的解决方案是使用以下方法找到安装路径:
brew info pyqt5
然后将其添加到您的 Python 路径,您可以在此处找到解决方案:
Permanently add a directory to PYTHONPATH
你的问题也和这个类似
HomeBrew Mac change Python Path
我用 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。
一个可能的解决方案是使用以下方法找到安装路径:
brew info pyqt5
然后将其添加到您的 Python 路径,您可以在此处找到解决方案:
Permanently add a directory to PYTHONPATH
你的问题也和这个类似
HomeBrew Mac change Python Path