当前位置:   article > 正文

mac系统中安装Python3后显示 not found 的问题如何解决_mac python: not found

mac python: not found

macOS 曾经在 10.8 至 12.3 版中预装了 Python 2.7。但是现在我们从 Python 网站 安装的最新版本的都是 Python 3,没有配置新版本python3的环境变量的话,系统就无法找到python环境。因此我们需要将新版本的python的路径添加到系统的环境变量中。

1.打开mac os的终端

1)command+space进入聚焦搜索。

2)在搜索栏里面输入“终端”,打开终端。

2.找到Python3的位置

打开终端输入:

where python3

如果显示 where:not found,可以输入:

 whereis python3

结果通常是是 "/usr/bin/python3",这就是你安装的python3的位置了。

3.在mac os上设置python3的路径

1)打开.bash_profile文件

open -e ~/.bash_profile

如果显示.bash_profile文件不存在,可以通过以下命令创建它:

touch ~/.bash_profile

然后再次使用open -e ~/.bash_profile命令来打开它进行编辑。

2)设置python路径

在.bash_profile 文件里面输入:

  1. export PATH="/usr/bin:${PATH}"
  2. alias python="/usr/bin/python3"

然后保存关闭文件,运行下面命令:

source ~/.bath_profile

这样就生效了。

最后可以重启你的编译器,python就可以正常运行了!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/585245
推荐阅读
相关标签
  

闽ICP备14008679号