背景
系统原来是 python2,安装 anaconda3 以后,变成了 python3。
使用 pyenv global 2.7.18 命令切换无效。
解决思路
1、查看 python 版本
$ python -V
Python 3.11.7
2、查看 python 的路径
$ where python
/opt/anaconda3/bin/python
/Users/tanggaowei/.pyenv/shims/python
注:/opt/anaconda3/bin/python 是 python3,/Users/tanggaowei/.pyenv/shims/python 是 python2
3、通过临时修改 PATH 环境变量来改变 python 的默认版本
export PATH=/Users/tanggaowei/.pyenv/shims:$PATH
注:不能 /Users/tanggaowei/.pyenv/shims/python 路径,否则无效
4、再次查看 python 路径
$ where python
/Users/tanggaowei/.pyenv/shims/python
/opt/anaconda3/bin/python
/Users/tanggaowei/.pyenv/shims/python
注:python2 的路径添加到最前面了。
5、再次查看 python 版本
$ python -V
Python 2.7.18