mac python 版本管理
安装 pyenv
brew install pyenv
echo -e 'if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi' >> ~/.bash_profile
source ~/.bash_profile
查看版本
pyenv install -l
安装版本
pyenv install 3.6.8
全局指定
pyenv global 3.6.8
指定当前
pyenv local 3.6.8
pyenv local --unset
卸载
pyenv uninstall 3.5.2
下载很慢
wget https://registry.npmmirror.com/-/binary/python/3.9.0/Python-3.9.0.tar.xz -P ~/.pyenv/cache/
pyenv install 3.9.0
镜像地址
https://registry.npmmirror.com/binary.html?path=python/
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17197072.html