- tar -zxvf Python-3.6.5.tgz
- cd Python-3.6.5
- ./configure
- make
- make install
-
make altinstall` , 报错:
zipimport.ZipImportError: can't decompress data; zlib not available
解决:
- cd Modules/zlib
- ./configure
- make install
- cd -
- make altinstall
zipimport.ZipImportError: can't decompress data; zlib not available
解决: