我尝试在 Ubuntu 服务器 10.04 上安装 Zope:
mnk@srv:~/zope-plone/Zope-3.4.0$ ./configure --prefix=/opt/zope-3.4.0
Configuring Zope installation
Testing for an acceptable Python interpreter...
Python version 2.6.5 found at /usr/bin/python
Python version 2.6.5 found at /usr/bin/python2
No suitable Python version found. You should install
Python version 2.4.3 before continuing. Versions
2.4.7 2.4.6 2.4.5 2.4.4 2.4.2 2.4.1 also work, but not as optimally.
那么我可以使用 Python 2.6.5 安装 Zope 吗?还是我需要安装 2.4.3 版本?如果我安装此版本的 Python,我的系统或其他 Python 应用程序会遇到一些问题吗?
答案1
我安装了旧的 Python 版本:
sudo apt-get install build-essential gcc
wget http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tgz
tar -xvzf Python-2.4.6.tgz
cd Python-2.4.6
./configure --prefix=/usr/local/python2.4.6
make
make test
sudo make install
sudo ln -s /usr/local/python2.4.6/bin/python /usr/bin/python2.4.6
然后我更改 Zope 配置文件以添加此 Python 版本作为可接受版本。
vim Zope-3.4.0/configure
EXENAMES="python python2 python2.4" => EXENAMES="python python2 python2.4.6"
只有在进行这些更改后,我才安装了 Zope。但是 Zope 启动时仍然存在一些问题。所以我不确定是否可以启动它。