[Zope] problems for Zope Installation

Dieter Maurer dieter@handshake.de
Fri, 24 Jan 2003 00:27:33 +0100


Cathy Nouvet wrote at 2003-1-22 11:44 +0100:
 > We are trying to install zope2.6 on Solaris 6.4.1.
 > So we took the sources of zope but we could not reach the complete
 > installation.
 > We have downloaded the 2.1.3 version of Python as recommended for zope
 > 2.6.
 > 
 > After executing the instructions make and make install, we tried to
 > execute the script w_pcgi.py.
 > And when we launch the application (command "start"), there is a problem
 > of linking libraries.
 > 
 > We get this kind of error :
 > 
 > Traceback (most recent call last):
 >   File "/usr/local/packages/zope/z2.py", line 247, in
 > ?
 >     import os, sys, getopt, codecs, string
 >   File "/usr/local/lib/python2.1/codecs.py", line 10,
 > in ?
 >     import struct,types,__builtin__
 > ImportError: No module named struct
Your Python installation is incomplete:

     "struct" is a built in Python module (usually dynamically loaded
     from ".../lib/python2.1/lib-dynload/struct.so").

     For some unknown reason, Python cannot find it.


Dieter