On Mon, Nov 15, 2010 at 2:57 PM, Marc Aymerich <[email protected]> wrote: > 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 should never do that. Either install it globally, so that it is installed like that anyway, or install per user, and configure your shell correctly so that it can find the appropriate apps. Doing half of each is a maintenance disaster. One can even use virtualenv to make this process easier. apt-get/yum/portinstall/emerge virtualenv, and then simply: mkdir project; cd project ; virtualenv env ; source env/bin/activate ; pip install django Cheers Tom -- 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.

