最新的CentOS8已經(jīng)內(nèi)置了Python2和Python3,出入Python2和Python3兩個命令可以分別進入Python2和Python3。
CentOS8內(nèi)置的Python3版本為3.6.8,我們需要將它升級到3.8.2
首先下載Python3.8.2的安裝包
wget https://www.python.org/ftp/python/3.8.2/Python-3.8.2.tgz
下載好安裝包后,下載python3.8所需要的環(huán)境依賴包
yum install gcc openssl-devel bzip2-devel libffi-devel
解壓縮Python3.8.2.tgz
tar zxf Python3.8.2.tgz
ls命令Python3.8.2的·文件夾
cd命令進入Python3.8.2文件夾
cd Python3…8.2/
安裝Python3.8.2
./configure --enable-optimizations
make altinstall
安裝完畢后,進入python的解釋器
python3.8
安裝python3.8.2并不會覆蓋CentOS內(nèi)置的python3.6.8,使用命令python3仍然可以進入3.6.8版本,必須使用命令python3.8才能進入3.8.2版本
到此這篇關(guān)于CentOS中安裝python3.8.2的詳細教程的文章就介紹到這了,更多相關(guān)CentOS安裝python3.8.2內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- python 插入Null值數(shù)據(jù)到Postgresql的操作
- Python3+Django get/post請求實現(xiàn)教程詳解
- python中os.remove()用法及注意事項
- 安裝python依賴包psycopg2來調(diào)用postgresql的操作
- Python調(diào)用系統(tǒng)命令os.system()和os.popen()的實現(xiàn)
- Python request post上傳文件常見要點
- Python通過fnmatch模塊實現(xiàn)文件名匹配
- Python中fnmatch模塊的使用詳情
- python os模塊和fnmatch模塊的使用介紹