gpt4 book ai didi

python - Plone 4.0.5 统一安装程序在 Ubuntu 11.04 (natty) 上失败并出现 zip/zlib 错误

转载 作者:太空狗 更新时间:2023-10-30 00:28:43 25 4
gpt4 key购买 nike

我是 Plone 新手,我正在尝试使用统一安装程序在 Ubuntu 11.04 Natty 上安装 Plone 4.0.5。

我解压安装程序并以 root 身份运行 ./install.sh zeo,但出现以下错误:

ZEO Cluster Install selectedDetailed installation log being written to /tmp/Plone-4.0.5-UnifiedInstaller/install.logRoot install method chosen. Will install for use by system user ploneInstalling Plone 4.0.5 at /usr/local/PloneUser 'plone' already exists. No need to create it.Skipping libjpeg buildSkipping zlib buildSkipping readline buildInstalling Python 2.6.6. This takes a while...Traceback (most recent call last):  File "", line 1, in LookupError: unknown encoding: zipPython zlib support is missing; something went wrong in the zlib or python build.Installation has failed.See the detailed installation log at /tmp/Plone-4.0.5-UnifiedInstaller/install.logto determine the cause.

我也安装了这些 ubuntu 包:

apt-get install zlib1g zlib1g-dev zlibc libghc6-zlib-dev zlibc

install.log 相当大 - 我只是在这里提到了 zlib:

Starting at Tue May 17 14:12:46 SAST 2011configure: WARNING: unrecognized options: --with-readline, --with-zlib, --disable-tk, --with-cxx...Failed to find the necessary bits to build these modules:_bsddb             _sqlite3           _tkinter        bsddb185           dbm                gdbm            sunaudiodev        zlib                               To find the necessary bits, look in setup.py in detect_modules() for the module's name.Failed to build these modules:crypt              nis          ...

我在安装文件中找不到 setup.py。

有什么想法我应该做什么或我应该寻找什么吗?

谢谢。

最佳答案

这是 Python disutils 和 natty 的新 multilib 设置的问题。我遇到了同样的问题,试图在从源代码构建的 Python 中获得 sqlite 支持。

您可以在 setup.py 的检测模块部分破解它

http://bugs.python.org/issue9762

编辑:

要解决此问题,请将 python setup.py(第 408 行左右)中的 lib_dirs 更改为此(对于 x86_64 机器):

lib_dirs = self.compiler.library_dirs + [
'/lib64', '/usr/lib64',
'/lib', '/usr/lib', '/usr/lib/x86_64-linux-gnu',
]

(缺少/usr/lib/x86_64-linux-gnu)

关于python - Plone 4.0.5 统一安装程序在 Ubuntu 11.04 (natty) 上失败并出现 zip/zlib 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6030876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com