【环境配置】mac安装python报错zsh: command not found: python 环境变量的添加

遇到问题

在mac中安装python后,输入python 显示zsh: command not found: python

因为是用homebrew安装的,已知:
Python has been installed as
/opt/homebrew/bin/python3

解决

当您在 macOS 中安装 Python 后,可能会出现路径问题,导致命令行工具无法识别 python 命令。根据您提供的 Python 安装路径,您可以尝试以下方法:

更新 .zshrc 或 .bash_profile 文件:
如果您正在使用 zsh 作为默认 shell,请打开 .zshrc 文件,并添加以下内容:

export PATH="/opt/homebrew/bin:$PATH"

如果您正在使用 bash 作为默认 shell,请打开 .bash_profile 文件,并添加以下内容:

export PATH="/opt/homebrew/bin:$PATH"

保存更改并退出文本编辑器。

运行以下命令以应用更改:

source ~/.zshrc # 如果您使用 zsh 作为默认 shell
source ~/.bash_profile # 如果您使用 bash 作为默认 shell

现在,您应该能够在终端中输入 python3 来调用 Python 3.x 版本:

python3

如果您希望使用 python 而不是 python3 来调用 Python 3.x 版本,可以通过创建 symbolic link 来实现:

ln -s /opt/homebrew/bin/python3 /usr/local/bin/python

现在,您应该能够在终端中输入 python 来调用 Python 3.x 版本:

python
作者:果砸 the alchemist原文地址:https://blog.csdn.net/weixin_41932970/article/details/139273722

%s 个评论

要回复文章请先登录注册