1. 程式人生 > >python3.7 安裝

python3.7 安裝

1 獲取下載地址

python官網下載地址

確定下載的版本,獲取下載地址

我一般會下載 tar格式的檔案

python3.7下載地址

#下載
wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz
#解壓
tar -zxvf Python-3.7.2.tgz
#切換目錄
cd Python-3.7.2
#執行檔案
./configure
#安裝
make && make install 

錯誤1

ModuleNotFoundError: No module named '_ctypes'
make: *** [install] Error 1

解決方法

yum install libffi-devel -y

後重新執行

#執行檔案
./configure
#安裝
make && make install