[Zope] problem installing login manager

Morten W. Petersen morten@esol.no
Sun, 29 Oct 2000 07:45:14 +0100 (CET)


On Sun, 29 Oct 2000, Henny van der Linde wrote:

[...]
> Files\WebSite22\lib\python\Products\ZPatterns\DataSkins.py", line 1, in ?
>     from DynPersist import DynPersist
> ImportError: No module named DynPersist
> 
> What 's happening?

You probably need to compile the DynPersist.c file into a shared library;
it's located within the ZPatterns product, and this command line (or
something similar) will probably compile it for you:

"""
gcc -O2 -o DynPersist.so -c DynPersist.c -I../../ZODB \
-I../../../Components/ExtensionClass -I/usr/include/python1.5
"""

HTH.

Regards, Morten