Ubuntu 18 安裝 Python 3.7 報錯的解決方案
阿新 • • 發佈:2018-11-13
Ubuntu 18
安裝 Python 3.7
報錯的解決方案
0. 環境
- 系統版本:
Ubuntu 18.04.1 LTS
Python
版本:Python 3.7.0
1. sudo make install
報錯 ZipImportError
- 錯誤資訊如下:
zipimport.ZipImportError: can't decompress data; zlib not available
- 解決方案:
sudo apt install zlib1g-dev
2. sudo make install
報錯 ModuleNotFoundError
- 錯誤資訊如下:
ModuleNotFoundError: No module named '_ctypes'
- 解決方案:
sudo apt install libffi-dev
3. pip3.7 list
提示沒有 ssl
模組
- 提示資訊如下:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
- 解決方案:
sudo apt install libssl-dev
./configure
make
sudo make install