On 6/2/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I have installed docutils 0.4 for use with my dreamhosted Django sites. > > I did not edit the .bash_profile like you. Instead I ran "setup.py > install --prefix $HOME" which created the bin and lib dir right in > $HOME. Then in my django.fcgi file I added > $HOME/lib/python2.3/site-packages/ to the PYTHONPATH like this. > sys.path += ['/home/MYUSER/lib/python2.3/site-packages'] > > That has worked for me. I hope it works for you. Good luck. > > Yeah, editing .bash_profile affects the shell. However django is not run from the shell (unless your running the dev server from the shell for testing), but is run through fcgi, so you need to edit the fcgi file to tell it about your new path. or if your using mod_python, then you need to edit the apache mod_python settings for that install. A simple mistake that is easy for any newbie to make.
-- ---- Waylan Limberg [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" 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/django-users -~----------~----~----~----~------~----~------~--~---

