參考鏈接
http://www.cnblogs.com/blackmatrix/p/5591341.html
http://blog.csdn.net/sinat_17817545/article/details/51177040
http://www.maiziedu.com/article/9946/
步驟
安裝homebrew
終端輸入
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安裝pyenv
終端輸入
$ brew install pyenv
查看可以安裝的python版本
終端輸入
$ pyenv install --list
安裝對應(yīng)的python版本
終端輸入
$ pyenv install 3.5.2
使用這個命令時出現(xiàn)一錯誤
修改
終端輸入
$ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -v 3.5.2
查看是否安裝版本
終端輸入
$ pyenv versions
不出意外的話會出現(xiàn)已經(jīng)安裝好的版本
設(shè)定環(huán)境
終端輸入
$ cd ~
終端輸入
$ open .bash_profile
如果.bash_profile文件不存在 創(chuàng)建文件
終端輸入 創(chuàng)建文件
$ touch .bash_profile
在彈出的.bash_profile文件中新增
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
command + s 保存文件
在終端中輸入如下命令茉继,使用更新之后的.bash_profile內(nèi)容
終端輸入
$ source .bash_profile
設(shè)定要使用的版本號
進(jìn)入安裝的Python路徑
終端輸入
$ cd /Users/Yunis/.pyenv/versions/3.5.2
終端輸入
$ pyenv local 3.5.2
終端輸入
$ pyenv global 3.5.2
查看是否設(shè)置成功
終端輸入
$ pyenv versions
如果不出意外 當(dāng)當(dāng)當(dāng)
*表示當(dāng)前生效的版本
啟動 notebook(需要安裝)()
終端輸入
$ ipython notebook