On 5/19/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> >>> import sys
> >>> print sys.path
> ['',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python23.zip',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/plat-darwin',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/plat-mac',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/plat-mac/lib-scriptpackages',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/lib-tk',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/lib-dynload',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages',
> '/System/Library/Frameworks/Python.framework/Versions/2.3/Extras/lib/python',
> '/Library/Python/2.3/site-packages/setuptools-0.6a9-py2.3.egg']
>
>
> and, my .bashrc:
>
> PATH=$PATH:$HOME/bin:/usr/local/bin:/usr/local/mysql/bin:$HOME/Development/django_src/django/bin
> PYTHONPATH=$HOME/Library/Frameworks/Python.framework/Versions/2.4:$HOME/Development/django_src/django
> SHELL=/bin/bash
2 problems.
1. python isn't picking up your PYTHONPATH. Try
echo $PYTHONPATH
at the command line. Are your sure it's set?
2. not
$HOME/Development/django_src/django
but
$HOME/Development/django_src
Python needs the directory *containing* the package, not the package
directory itself.
Joseph
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---