Centos 7 安装Python3.6.4 报错解决方法zipimport.ZipImportError: can't decompress data; zlib not available   make: *** [install] Error 1

  在centos7 中安装Python3中遇到的问题

  wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz

  tar -xvf Python-3.6.4.tgz

  cd Python-3.6.4

  ./configure

  报错:

  configure: error: no acceptable C compiler found in $PATH

 

  See `config.log' for more details

  解决办法:安装GCC

  yum install gcc

  完成后再次安装

  1. ./configure  
  2. make  
  3. make altinstall  

  在make install 命令后出现错误:

  zipimport.ZipImportError: can't decompress data; zlib not available

  make: *** [install] Error 1

  解决方法:

  yum install -y zlib*

  1. cd Modules/zlib  
  2. ./configure  
  3. make install  
  4. cd -  
  5. make install

  如果安装完成后pip3 出现:

  pip is configured with locations that require TLS/SSL

  安装openssl & openssl-devel

  yum -y install openssl

  yum -y install openssl-devel

  重新安装Python3

  1. ./configure --with-ssl 
  2. make
  3. sudo make install
posted @ 2018-03-12 15:33  日苟笚狎  阅读(2437)  评论(0编辑  收藏  举报