Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试安装 PyQT,我使用了 PyQT。已使用 home brew 安装。但是当我尝试导入它时,python 不能。我在 Home brew 中收到以下警告。我是 Mac 新手,不知道如何更改 python 路径。任何帮助都会很棒。
对于非自制 python (2.x),您需要像这样修改 PYTHONPATH:export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH
您应该编辑~/.bash_profile(如果文件不存在则创建文件)以设置PYTHONPATH环境变量:
~/.bash_profile
PYTHONPATH
export PYTHONPATH=`brew --prefix`/lib/python2.7/site-packages:$PYTHONPATH
由于您使用 Homebrew 安装了 PyQt,因此您还应该使用 Homebrew Python 2。
要安装它,请运行:brew install python
brew install python
现在,您可以正常导入 PyQt。