I believe I'm doing that, look at the last entry in the path: $ python Python 2.6.4 (r264:75821M, Oct 27 2009, 19:48:32) [GCC 4.0.1 (Apple Inc. build 5493)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> print sys.path ['', '/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ site-packages/setuptools-0.6c11-py2.6.egg', '/Library/Frameworks/ Python.framework/Versions/2.6/lib/python2.6/site-packages/ readline-2.6.4-py2.6-macosx-10.3-fat.egg', '/Library/Frameworks/ Python.framework/Versions/2.6/lib/python2.6/site-packages/pexpect-2.4- py2.6.egg', '/Library/Frameworks/Python.framework/Versions/2.6/lib/ python2.6/site-packages/zope.interface-3.5.3-py2.6-macosx-10.3- fat.egg', '/Library/Frameworks/Python.framework/Versions/2.6/lib/ python2.6/site-packages/Twisted-9.0.0-py2.6-macosx-10.3-fat.egg', '/ Library/Frameworks/Python.framework/Versions/2.6/lib/python26.zip', '/ Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6', '/ Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat- darwin', '/Library/Frameworks/Python.framework/Versions/2.6/lib/ python2.6/plat-mac', '/Library/Frameworks/Python.framework/Versions/ 2.6/lib/python2.6/plat-mac/lib-scriptpackages', '/Library/Frameworks/ Python.framework/Versions/2.6/lib/python2.6/lib-tk', '/Library/ Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-old', '/ Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib- dynload', '/Library/Frameworks/Python.framework/Versions/2.6/lib/ python2.6/site-packages']
I created the symbolic link as follows, with the appropriate replacement for SITE-PACKAGES-DIR, obviously: ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django Unfortunately, I'm still getting the same error. Thanks for your help, -Gaston On Dec 16, 3:41 pm, Ales Zoulek <ales.zou...@gmail.com> wrote: > You need to have django installed in your pythonpath. > > You can see the current python path by running python console and > import sys > print sys.path > > If there's not the directory containing django sources, try adding the > directory to the PYTHONPATH system environment variable, or symlink it > somewhere to dir in sys.path > > A. > > ------------------------------------------------------ > Ales Zoulek > Jabber: ales.zou...@gmail.com > ------------------------------------------------------ > > > > On Wed, Dec 16, 2009 at 9:07 PM, Gaston <gaston.fi...@gmail.com> wrote: > > Hello, > > > I'm new to Django and I'm following part 1 of the tutorial. When I try > > creating a new project, the following error appears: > > > $ ~/programming/python/django-trunk/django/bin/django-admin.py > > startproject mysite > > Traceback (most recent call last): > > File "/Users/gafiore/programming/python/django-trunk/django/bin/ > > django-admin.py", line 2, in <module> > > from django.core import management > > ImportError: No module named django.core > > > I've installed Django from SVN following the installation > > instructions, and I'm using Mac OS X. > > > Thanks a lot for your help, > > > -Gaston > > > -- > > > You received this message because you are subscribed to the Google Groups > > "Django users" group. > > To post to this group, send email to django-us...@googlegroups.com. > > To unsubscribe from this group, send email to > > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@google > > groups.com> > > . > > For more options, visit this group at > >http://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.