Re: Error creating new project

2009-12-18 Thread Gaston
Thanks Ales, there were problems with the symlink. Deleting it and just doing python setup.py install solved the problem. Thanks again for your help! -Gaston On Dec 17, 3:08 am, Ales Zoulek wrote: > OK. > > Try: > > ls SITE-PACKAGES-DIR/django > > is there a "core", "http", "forms" dirs or dirs

Re: Error creating new project

2009-12-17 Thread Ales Zoulek
OK. Try: ls SITE-PACKAGES-DIR/django is there a "core", "http", "forms" dirs or dirs like examples, scripts, docs and "django"? If it's the second case, then you need to symlink one "django" dir deeper: unlink SITE-PACKAGES-DIR/django ln -s `pwd`/django-trunk/django/django SITE-PACKAGES-DIR/dj

Re: Error creating new project

2009-12-16 Thread Abhaya
Hi Gaston, I am also pretty new to python. Once I had a similar issue, it turned out to be permissions on the directories. Since you are creating a symlink, make sure that all the directories have appropriate permissions. Regards, Abhaya On Dec 17, 2:22 am, Gaston wrote: > I believe I'm doing t

Re: Error creating new project

2009-12-16 Thread Gaston
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/

Re: Error creating new project

2009-12-16 Thread Ales Zoulek
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

Error creating new project

2009-12-16 Thread Gaston
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