Mac OS X10.9默認帶了Python2.7,不過現在Python3.3.3出來了,如果想使用最新版本,趕緊升級下吧。基本步驟如下。
第1步:下載Python3.3
下載地址如下:
Python3.3
這裡面有windows和mac os x下的安裝程序,下載那個64位的安裝程序(估計現在沒有用32位的mac os x的吧)
第2步:
安裝下載的img文件,安裝完後的目錄如下:
/Library/Frameworks/Python.framework/Versions/3.3 第3步:移動python的安裝目錄 原來的安裝目錄見第2步,不過所有的python都在
/System/Library/Frameworks/Python.framework/Versions
目錄中,所以最好使用下面的命令移動一下,當然不移動也可以。但後面步驟中的某些路徑需要修改下。
sudo mv /Library/Frameworks/Python.framework/Versions/3.3 /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.3也照葫蘆畫瓢吧!
第5步:修改Python當前安裝目錄的符號鏈接
在 /System/Library/Frameworks/Python.framework/Versions/目錄下有一個Current,這是一個目 錄符號鏈接,指向當前的Python版本。原來指向2.7的,現在指向3.3。所以應先刪除Current。然後重新建立Current符號鏈接,命令如 下:
sudo rm /System/Library/Frameworks/Python.framework/Versions/Current sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.3 /System/Library/Frameworks/Python.framework/Versions/Current 第6步:刪除舊的命令符號鏈接 在/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 第7步:重新建立新的命令符號鏈接 將第6步刪除的符號鏈接重新使用下面命令建立,它們都指向Python3.3了。
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.3/bin/pydoc3.3 /usr/bin/pydoc sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.3/bin/python3.3 /usr/bin/python sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.3/bin/pythonw3.3 /usr/bin/pythonw sudo ln -s /System/Library/Frameworks/Python.framework/Versions/3.3/bin/python3.3m-config /usr/bin/python-config 第8步:更新/root/.bash_profile文件中的路徑 cd ~ vim .bash_profile 在.bash_profile插入下面的內容即可 # Setting PATH for Python 3.3 # The orginal version is saved in .bash_profile.pysave PATH="/System/Library/Frameworks/Python.framework/Versions/3.3/bin:${PATH}" export PATH ok,現在重新啟動一下Console,然後執行python --version,得到的就是Python 3.3.3。如果在程序中,需要使用下面代碼獲取python版本1 2
import
platform
print
(platform.python_version())
如果還是用了如PyDev等IDE,仍然需要更新一下相關的路徑。
現在可以使用最新的Python3.3.3了。
推薦閱讀:
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視頻+代碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
Python腳本獲取Linux系統信息 http://www.linuxidc.com/Linux/2013-08/88531.htm
Python 網站文件及數據庫備份腳本 http://www.linuxidc.com/Linux/2012-06/62346.htm
Python文件處理:讀取文件 http://www.linuxidc.com/Linux/2013-08/88496.htm
如何發布自定義的Python模塊 http://www.linuxidc.com/Linux/2013-08/88495.htm
Python爬蟲多線程抓取代理服務器 http://www.linuxidc.com/Linux/2013-07/87289.htm
Python中re(正則表達式)模塊詳解 http://www.linuxidc.com/Linux/2013-08/88588.htm
Python 的詳細介紹:請點這裡
Python 的下載地址:請點這裡