1. 程式人生 > >centos7安裝python3 pip3

centos7安裝python3 pip3

一:基本環境

系統版本

centos7.3

python版本

使用官方python3.6.5正式版

二:開始部署

1、安裝各類基礎模組

yum gcc-c++
(為centos系統增加編譯功能)

yum install wget openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel
(安裝這些模組都是為了成功編譯安裝python3,防止出現各種異常)

yum install libxml*
(安裝這個模組是為了讓uwsig支援使用“-x"選項,能通過xml檔案啟動專案)

2、編譯安裝python3

進入home路徑(本人喜歡把東西都下載到這裡),執行以下命令:
wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz --no-check-certificate

下載完成後,執行解壓命令:
tar xf Python-3.6.5.tar.xz

進入解壓後的Python-3.6.5資料夾,依次執行以下命令

cd Python-3.6.5

# ./configure --prefix=/usr/local --with-ensurepip=install --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"

make && make install

測試安裝成功了沒,執行

python3.6  --version  看看輸出的是不是python3的版本