Mac OS X10.12.4安裝的Python2.7升級Python3.5步驟詳解

來源:互聯網
上載者:User

標籤:current   bin   bash   預設   desc   span   目錄   img   ide   

 Mac OS X10.12預設帶了Python2.7,不過現在Python3.5出來了,如果想使用最新版本,趕緊升級下吧。基本步驟如下 

第1步:官網下載Python3.3

這裡面有windows和mac os x下的安裝程式,下載那個64位的安裝程式

第2步:安裝下載的img檔案,安裝完後的目錄如下:

複製代碼代碼如下:
/Library/Frameworks/Python.framework/Versions/3.5

 

第3步:移動python的安裝目錄

原來的安裝目錄見第2步,不過所有的python都在
/System/Library/Frameworks/Python.framework/Versions
目錄中,所以最好使用下面的命令移動一下,當然不移動也可以。但後面步驟中的某些路徑需要修改下。
sudo mv /Library/Frameworks/Python.framework/Versions/3.5 /System/Library/Frameworks/Python.framework/Versions
第4步:改變Python安裝目錄的使用者組為wheel

複製代碼代碼如下:
sudo chown -R root:wheel /System/Library/Frameworks/Python.framework/Versions/3.3
python2.7的使用者組就是wheel,3.5也照葫蘆畫瓢吧!

 

第4步:修改Python當前安裝目錄的符號連結

在 /System/Library/Frameworks/Python.framework/Versions/目錄下有一個Current,這是一個目 錄符號連結,指向當前的Python版本。原來指向2.7的,現在指向3.5。所以應先刪除Current。然後重建立立Current符號連結,命令如 下:

 

複製代碼代碼如下:
sudo rm /System/Library/Frameworks/Python.framework/Versions/Current
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.5 /System/Library/Frameworks/Python.framework/Versions/Current

 

第5步:刪除舊的命令符號連結

在/usr/bin目錄下有4個python命令的符號連結,使用下面的命令先刪除

複製代碼代碼如下:
sudo rm /usr/bin/pydoc
sudo rm /usr/bin/python
sudo rm /usr/bin/pythonw
sudo rm /usr/bin/python-config

 

第6步:重建立立新的命令符號連結

將第6步刪除的符號連結重新使用下面命令建立,它們都指向Python3.5了。

複製代碼代碼如下:
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.5/bin/pydoc3.5 /usr/bin/pydoc
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5 /usr/bin/python
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.5/bin/pythonw3.5 /usr/bin/pythonw
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5m-config /usr/bin/python-config

 

第7步:更新/root/.bash_profile檔案中的路徑

複製代碼代碼如下:
cd ~
vim .bash_profile 

 

在.bash_profile插入下面的內容即可

 

複製代碼代碼如下:
# Setting PATH for Python 3.5
# The orginal version is saved in .bash_profile.pysave
PATH="/System/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"
export PATH

 

ok,現在重新啟動一下Console,然後執行python --version,得到的就是Python 3.5。如果在程式中,需要使用下面代碼擷取python版本

 

複製代碼代碼如下:
import platform
print(platform.python_version())

 

如果還是用了如PyDev等IDE,仍然需要更新一下相關的路徑。

現在可以使用最新的Python3.5了。

Mac OS X10.12.4安裝的Python2.7升級Python3.5步驟詳解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.