我应该重新安装的zlib模块再次蟒蛇? [重复](should I re-install pyt

2019-10-30 08:10发布

这个问题已经在这里有一个答案:

  • 安装分布在Python 3.3的Ubuntu 2个回答

当安装分发-0.6.49在Ubuntu系统python3.3.2,遇到错误

.... blablabla之后...

"Compression requires the (missing) zlib module")
RuntimeError: Compression requires the (missing) zlib module

我已经检查以前的解决方案,我需要安装的zlib包,但我应该重新在此之前,重新安装我的蟒蛇? 我无法安装的zlib过来的吗?

如果需要蟒蛇的重新安装,我在哪里可以找到蟒蛇3.3 zlib的其中已经这样我可以安装python像往常一样?

Answer 1:

如果您正在运行Ubuntu则通常recomended您从包管理器使用的包。 你可以得到蟒蛇3 -目前3.3.1或者sudo apt-get install python3 如果我没有记错 ,或者使用软件中心。

我有理由相信,默认分布包括zlib的。

Python 3.3.1 (default, Apr 17 2013, 22:30:32) 
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import zlib
>>> exit()


Answer 2:

要使用Python的编译zlib支持,你需要安装zlib1g-dev软件包使Python可以找到头。

你需要重新安装你的源代码编译Python来一起吃这个药。



文章来源: should I re-install python again for zlib module? [duplicate]