[Zope] Re: [Zope-Annce] ANNOUNCE: Zope 2.4.0 alpha 1 released
Oleg Broytmann
Oleg Broytmann <phd@phd.fep.ru>
Fri, 1 Jun 2001 13:32:19 +0400 (MSD)
On Thu, 31 May 2001, Brian Lloyd wrote:
> http://www.zope.org/Products/Zope/2.4.0a1/
1. Docs in doc/ directory are obsolete! Especially INSTALL.txt:
"ZOPE 2.0 REQUIRES PYTHON 1.5.2!" :)))
2.
Traceback (most recent call last):
File "/usr/local/Zope/z2.py", line 540, in ?
import ZServer
File "/usr/local/Zope-2.4.0a1-src/ZServer/__init__.py", line 89, in ?
import max_sockets
ImportError: No module named max_sockets
This because ZServer/__init__.py appnd ZServer/medusa/test to sys.path.
This means that zope *must* be started with current directory set to
ZServer/..
Use INST_HOME!
sys.path.append("%s/ZServer/medusa/test" % os.environ["INST_HOME"])
Oleg.
----
Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru
Programmers don't die, they just GOSUB without RETURN.