1、使用brew纯净安装Python 3.6.5方法
1) brew安装命令
brew unlink python # ONLY if you have installed (with brew) another version of python 3 brew install --ignore-dependencies https://raw.githubusercontent.com/Homebrew/homebrew-core/f2a764ef944b1080be64bd88dca9a1d80130c558/Formula/python.rb
2) 切换以前安装的版本
brew info python # To see what you have previously installed brew switch python 3.x.x_x # 例如,3.6.5_1
2、使用pyenv安装老版本Python 3.6.5方法
1) 安装pyenv
brew install pyenv
2) 安装Python 3.6.5
pyenv install 3.6.5
3) 全局管理python版本
pyenv global 3.6.5
4) 本地目录使用的版本
pyenv local 3.6.5
5) 使用虚拟环境命令
brew install pyenv-virtualenv
pyenv virtualenv 3.6.5 env_name