美文网首页
关于python源码编译的一些问题——Centos7

关于python源码编译的一些问题——Centos7

作者: langlyyy | 来源:发表于2017-11-12 16:29 被阅读0次

1、执行 make install 报错 zipimport.ZipImportError: can't decompress data; zlib not available

image.png

安装 zlib 发现已经安装了......


image.png

不懂就百度一下嘛,发现还是zlib的问题,只不过是另外一个包,
执行 yum install zlib-devel -y 安装

image.png

再编译下试试

make install

image.png

Done!

欢迎留言遇到的问题,解决下并分享下原因,排错的过错很痛苦也很好玩....

相关文章

  • 关于python源码编译的一些问题——Centos7

    1、执行 make install 报错 zipimport.ZipImportError: can't deco...

  • Python基础知识

    Python下载地址:官方源码 centos7下安装方法 :Centos7安装Python3.5 Python B...

  • CentOS7 安装Python3

    本文主要介绍在CentOS7上通过源码编译的方式案头Python3, 文中用到的是CentOS7.2, Pytho...

  • mac osx python3.7.0 编译排难

    最近在看python3源码剖析,在mac上编译python3.7.0时遇到一些问题,记录此文用以排难。 X11 问...

  • CentOS7上安装Nodejs

    CentOS7上安装Nodejs 下载源码 解压源码,并重命名源码 编译安装 配置NODE_HOME,进入prof...

  • 安装vim并支持python3

    编译安装vim并支持python3,以centos7为例子 1 编译安装python3 2 编译安装vim并支持p...

  • Centos7 多种方法 安装git

    源码安装 安装对应的依赖 下载源码编译安装 确保系统git 已经被卸载 rpm 安装(基于CentOS7)

  • Kaldi(一)安装编译

    我使用的centos7安装的。需要克隆下来kaldi源码,编译安装 从github克隆下来源码:git clone...

  • centos7源码安装lnmp

    centos7源码安装lnmp 相关链接 源码安装 使用systemd 编译选项 my.cnf配置文件说明 下载源...

  • Linux 安装Python3

    首先安装一些python需要的库 下载python 源码编译安装 python3.5 源码安装时会自动安装pip如...

网友评论

      本文标题:关于python源码编译的一些问题——Centos7

      本文链接:https://www.haomeiwen.com/subject/jmfomxtx.html