On Fri, May 29, 2009 at 1:25 PM, Chandrashekar Jayaraman
<udn...@gmail.com>wrote:

> Hi,
>
> I am trying to setup stackless and django.
> For this purpose I am using python2.6 , I installed stackless (
> ./configure, make, make install  ) using this.
> I also installed the psycopg package with python ( stackless ) but for some
> reason when i try to run shell it throws up an error saying that
> django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module:
> /usr/local/lib/python2.6/site-packages/psycopg2/_psycopg.so: undefined
> symbol: PyUnicodeUCS4_Decode
>

This question really has nothing to do with Django.  You appear to be
running into an incompatibility between stackless and psycopg2.  Note
stackless claims 100% compatibility only with pure Python code, and when you
are using a database backend like psycopg2 you are also pulling in
non-Python extensions (as indicated by the report of a problem loading an
.so file).  I don't know if/how you can make that work.  A group dedicated
to either one of the two components that are conflicting would have a higher
likelihood of being able to help you.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to