在Ubuntu系统中使用python3.3.2安装distribute-0.6.49时,遇到错误
blablabla后面跟着…
"Compression requires the (missing) zlib module")
RuntimeError: Compression requires the (missing) zlib module
我已经检查了以前需要安装zlib包的解决方案,但在此之前我应该重新安装我的python吗?我不能在上面安装zlib吗?
如果需要重新安装python,我在哪里可以找到已经有zlib的python 3.3,这样我就可以像往常一样安装python了?
要编译支持zlib
的Python,需要安装zlib1g-dev
包,以便Python能够找到标头。
您需要重新安装源代码编译的Python才能执行此操作。
如果您正在运行ubuntu,那么通常建议您使用包管理器中的包。如果我没有记错,或者使用软件中心,您可以使用sudo apt-get install python3
获得python 3-当前为3.3.1。
我有理由相信,默认的分布包括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()