Python 2.3.2 and Zope 2.7.0b2?
Hello, I've Python 2.3.2 installed and I try to install Zope 2.7.0b2. But it complains about the Python version. But it says that 2.3 will also work? Will it work or not? How can I override this message? Thx, Florian florian@bastet:~/Zope-2.7.0-b2> ./configure --prefix=/usr --optimize Configuring Zope installation Testing for an acceptable Python interpreter... Python version 2.3.2 found at /usr/bin/python Python version 2.3.2 found at /usr/bin/python2.3 No suitable Python version found. You should install Python version 2.2.3 before continuing. Versions 2.2.2 2.3 2.3b1 2.3a1 2.3a0 also work, but not as optimally. This is a rerepost, because my 2 other message didn't appear on the list after more than one day.
Florian Lindner wrote:
Hello, I've Python 2.3.2 installed and I try to install Zope 2.7.0b2. But it complains about the Python version. But it says that 2.3 will also work? Will it work or not? How can I override this message?
Use ./configure --with-python=/usr/bin/python to quell the configure script's complaints. If you're going to be testing 2.7 you might as well check it out from CVS though. -- Jamie Heilman http://audible.transient.net/~jamie/ "I was in love once -- a Sinclair ZX-81. People said, "No, Holly, she's not for you." She was cheap, she was stupid and she wouldn't load -- well, not for me, anyway." -Holly
You're trying to install Zope 2.7.0b2, which doesn't recognize Python 2.3.2 as its "optimum" or even an "acceptable" version (2.3.2 didn't exist when Zope 2.7.0b2 was release). But it should work. Use the --with-python flag to override this, e.g. ./configure --prefix=/usr --optimize --with-python=/usr/bin/python As far as why there's a --no-compile when you specify --optimize, distutils treats the combination of flags "--no-compile --optimize=1" as "generate pyo files only"; it won't generate pyc files, which is what you want in this case. On Mon, 2003-10-13 at 06:10, Florian Lindner wrote:
Hello, I've Python 2.3.2 installed and I try to install Zope 2.7.0b2. But it complains about the Python version. But it says that 2.3 will also work? Will it work or not? How can I override this message? Thx, Florian
florian@bastet:~/Zope-2.7.0-b2> ./configure --prefix=/usr --optimize
Configuring Zope installation
Testing for an acceptable Python interpreter...
Python version 2.3.2 found at /usr/bin/python Python version 2.3.2 found at /usr/bin/python2.3
No suitable Python version found. You should install Python version 2.2.3 before continuing. Versions 2.2.2 2.3 2.3b1 2.3a1 2.3a0 also work, but not as optimally.
This is a rerepost, because my 2 other message didn't appear on the list after more than one day.
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
participants (3)
-
Chris McDonough -
Florian Lindner -
Jamie Heilman