> With echo @PYTHONPATH > django-trunk:django-trunk/django/bin:django-trunk/django/bin/django- > admin.py > same error message. >
Ok, there is a subtle difference that you are missing. PYTHONPATH and PATH. They are two completely different environment variables. PYTHONPATH is only for Python in locating Python modules and PATH is to locate executable files in the shell. export PATH=/path/to/django/bin:$PATH Also, it appears you are relying on a relative path. I would highly recommend you adjust the PYTHONPATH and how you setup the PATH to use an absolute path. export PYTHONPATH=/home/user/django-trunk -- Brian Rosner http://oebfare.com --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---