On Thu, Jan 29, 2009 at 9:29 PM, Chris B <[email protected]> wrote: > > When I run the the "go-pylons.py" script, I get the following > traceback: > >>python go-pylons.py pylons_sandbox/ > Traceback (most recent call last): > File "go-pylons.py", line 950, in ? > SITE_PY = """ > LookupError: unknown encoding: zlib >
The python library installed on your system (or at least the one you targeted with virtualenv -p ???) is missing the module to allow for zlib encoding. I found this module in my python directory (/usr/local/lib/python2.6/encodings/zlib_codec.py). Check that this file exists in the library you're using to make the virtual environment from. If you tried to compile python from source, then you probably just need to make sure that you have the zlib development headers and compile it again, otherwise that module will not be installed into the python standard library. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
