[Zope] Can't start server

Anthony Baxter Anthony Baxter <anthony@interlink.com.au>
Mon, 09 Aug 1999 16:42:53 +1000


>>> Paul Wolstenholme wrote
> 
> 
> I just read the devshed article on Zope and thought I would give it a try
> on my machine. I'm running:
> 
> FreeBSD 2.1 Stable
> Python 1.5.2
> Apache 1.3.6
 [...snip...]
>     import thread
> ImportError: No module named thread

many python binary distributions don't ship with thread support 
enabled - you'll need to either find one that does, or rebuild
python from source with './configure --with-thread'.

(DC guys: maybe make the build script check for this, and whine 
about it if it's not found?)

Anthony