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
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
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
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/
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
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
6 matches
Mail list logo