当前位置:   article > 正文

Mac brew更新后 command not found: python_mac 更新后 python 不能使用 command not found: python

mac 更新后 python 不能使用 command not found: python

更新Homebrew

brew upgrade
  • 1

Python2.7.10升级到Python2.7.14
结果在命令行输入python后,显示

command not found: python
  • 1

探究原因,发现是因为使用brew安装的python更新为python2(在电脑中已安装python3),输入python2可以进入python。进入/usr/local/bin/目录,发现下列已变更为python2。

pip2 -> ../Cellar/python/2.7.14/bin/pip2
python2 -> ../Cellar/python/2.7.14/bin/python2```
  • 1
  • 2

需要我们使用 ln 命令建立python2的连接。

ln [-bfis] existing-file-list(source) new-link
-b    如果需要创建的目标链接已存在相同文件名,则备份
-f    强制创建目标链接
-i    覆盖相同文件名时提示
-s    创建符号链接
  • 1
  • 2
  • 3
  • 4
  • 5

建立链接后,输入python也能跳转到python2。

ln -s ../Cellar/python/2.7.14/bin/pip2 pip
ln -s ../Cellar/python/2.7.14/bin/python2 python
pip -> ../Cellar/python/2.7.14/bin/pip2
python -> ../Cellar/python/2.7.14/bin/python2
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/585227
推荐阅读
相关标签
  

闽ICP备14008679号