On Mon, Nov 15, 2010 at 2:44 PM, ErritG <[email protected]> wrote: > Hi Everybody, > > Been struggling with the first part of the Tutorial. Even though the > 'bash: django-admin.py: command not found' has been solved by others I > can't seem to get around this error. Perhaps it's because I'm using > version 2.7 while all the found solutions mention up to 2.6 as > version? > > Can anyone guide me to the first part of the tutorial based on version > 2.7? Thanks in advance for your help! >
Seems that your shell doesn't know where django-admin.py is. In what directory you have installed django? You can solve this problem by making a symbolic link like this: ln -s "$DJANGO-INSTALLED-PATH"/django/bin/django-admin.py /usr/bin/ -- Marc -- 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?hl=en.

