Pip 安装在 m1 Mac 上不起作用

Pip 安装在 m1 Mac 上不起作用

我的 pip 无法正常工作。我尝试使用确保pip以及官方获取pip.py脚本。使用官方安装脚本时,我收到一条警告:

WARNING: The scripts pip, pip3 and pip3.9 are installed in '/opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

脚本的结尾:

Successfully installed pip-22.0.4

但重新启动终端并重新启动后它仍然不起作用

你知道如何解决这个问题吗?

答案1

我真的很抱歉提出这个问题

我刚刚意识到我必须输入 pip3

答案2

错误消息告诉您有关问题和解决方案的所有信息。WARNING: The scripts pip, pip3 and pip3.9 are installed in '/opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/bin' which is not on PATH. Consider adding this directory to PATH

您需要$PATH按如下方式修改变量:

export PATH=$PATH:/opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/bin

您可以找到有关使更改永久生效的信息这里

答案3

使用此命令安装 python,brew install python3它将安装 python 和 pip、pip3 到机器上

相关内容