在 Debian Lenny 上安装 setuptools 时,为什么会出现 zlib 错误?

在 Debian Lenny 上安装 setuptools 时,为什么会出现 zlib 错误?

python2.6 setup.py build当我从源代码运行 Debian Lenny时看到此错误setuptools-0.6c11

Compression requires the (missing) zlib module

答案1

思考问题是 python2.6 没有使用 zlib 构建。我运行了以下命令,解决了我的问题(假设您有 Python 2.6 源代码):

apt-get install zlib1g-dev
cd Python-2.6.5
./configure
make
make install

... 还有很多其他东西是 Python 用来构建的。如果缺少这些东西,安装程序不会失败,只是在没有这些东西的情况下构建。

相关内容