2021-05-12 14:32:11
在CentOS7上安裝Python3.5.0與舊版本Python2.7.5共存
在CentOS7上安裝Python3.5.0與舊版本Python2.7.5共存問題解決。
當前版本
[linuxidc@localhost ~]$ python -V
Python 2.7.5
安裝說明
我們必須不能破壞系統的環境。因為幾個關鍵的應用程式依賴於Python 2.7.5。如果替換了系統的Python環境就會發生很多難以預見的錯誤,甚至要重灌系統。
我們使用make altinstall,如果使用make install,你將會看到在系統中有兩個不同版本的Python在/usr/bin/目錄中。這將會導致很多問題,而且不好處理。
安裝
sudo ./configure --prefix=/usr/local
sudo make
sudo make altinstall
python程式的執行檔案:/usr/local/bin/python3.5
python應用程式目錄:/usr/local/lib/python3.5
pip的執行檔案:/usr/local/bin/pip3.5
檢視安裝的版本
[linuxidc@localhost bin]$ python3.5 -V
Python 3.5.0
下面關於Python的文章您也可能喜歡,不妨看看:
CentOS 7安裝Python3.5 http://www.linuxidc.com/Linux/2016-04/129784.htm
Linux下Python的安裝以及注意事項 http://www.linuxidc.com/Linux/2015-11/124861.htm
Ubuntu 14.04 下安裝使用Python rq模組 http://www.linuxidc.com/Linux/2015-08/122441.htm
無需作業系統直接執行 Python 程式碼 http://www.linuxidc.com/Linux/2015-05/117357.htm
CentOS上原始碼安裝Python3.4 http://www.linuxidc.com/Linux/2015-01/111870.htm
《Python核心程式設計 第二版》.(Wesley J. Chun ).[高清PDF中文版] http://www.linuxidc.com/Linux/2013-06/85425.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視訊+程式碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
Python指令碼獲取Linux系統資訊 http://www.linuxidc.com/Linux/2013-08/88531.htm
在Ubuntu下用Python搭建桌面演算法交易研究環境 http://www.linuxidc.com/Linux/2013-11/92534.htm
Python 語言的發展簡史 http://www.linuxidc.com/Linux/2014-09/107206.htm
相關文章