2021-05-12 14:32:11
CentOS 7從Python 2.7升級至Python3.6.1
引言: CentOS是目前最為流行的Linux伺服器系統,其預設的Python 2.x,但是根據python社群的規劃,在不久之後,整個社群將向Python3遷移,且將不在支援Python2, 那該如何平滑遷移至Python3 呢?
1. 環境介紹
CentOS 7, 當前的Python版本2.7.12
>> uname -a
Linux AY131203102210033c39Z 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
>> cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel Fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
RedHat_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
2. 下載Python 3.x的安裝包
預設Linux的安裝包只能是原始碼安裝:
>> wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
由於xz結尾的檔案,故可以使用如下命令來解壓:
>> xz -d Python-3.6.1.tar.xz
>> tar xvf Python-3.6.1.tar
3. 編譯並安裝
>> mkdir /usr/local/python3
>> cd Python-3.6.1 #進入原始碼檔案目錄
>> sudo ./configure --prefix=/usr/local/python3 --enable-optimizations
>> sudo make # 此過程將持續較長的時間
3. 替換python
>> cd /usr/bin
>> mv python python.bak
其中有python, python2.7, python2三個檔案,其實都是指向python2.7的,這裡將python備份
>> sudo ln -s /usr/local/python3/bin/python3.6 /usr/bin/python
>> python -V
檢查python的版本是否被正確替換掉了。
4. 收尾替換工作
原則: 所有python相關的應用,如果為使用/usr/bin/python開頭的指令碼統統替換掉, 如果其只能在python2.7下執行,則替換為python2.7。
根據網路上的資訊,相關的檔案可能有如下, 具體情況視具體情況而定:
a. /usr/bin/yum
b./usr/libexec/urlgrabber-ext-down
5. 總結
過程比較簡單,期待CentOS7盡快升級到Python3。
下面關於Python的文章您也可能喜歡,不妨參考下:
《Python核心程式設計 第二版》.(Wesley J. Chun ).[高清PDF中文版] 下載見 http://www.linuxidc.com/Linux/2013-06/85425.htm
零基礎如何入門Python http://www.linuxidc.com/Linux/2016-10/136485.htm
Ubuntu 14.04安裝Python 3.3.5 http://www.linuxidc.com/Linux/2014-05/101481.htm
CentOS 6.5 指令碼自動化裝 Python2.6升級2.7 http://www.linuxidc.com/Linux/2017-02/140406.htm
CentOS上原始碼安裝Python3.4 http://www.linuxidc.com/Linux/2015-01/111870.htm
Ubuntu 14.04下Python資料處理環境搭建 http://www.linuxidc.com/Linux/2017-01/139568.htm
Python Paramiko模組安裝和使用 http://www.linuxidc.com/Linux/2017-01/139973.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視訊+程式碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
在CentOS 6.5上安裝Python2.7 http://www.linuxidc.com/Linux/2016-10/136206.htm
Ubuntu 14.04 LTS下編譯安裝Open Babel和Python語言系結 http://www.linuxidc.com/Linux/2017-01/139569.htm
Python常見資料結構整理 http://www.linuxidc.com/Linux/2017-02/140613.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-04/142916.htm
相關文章