waltbrad wrote: > Hi folks. I'm trying to install on my pc Django without success. I > was using instantdjango, but I'm told that there is some danger > because of it's internal webserver? > Anyway, I downloaded django and put the folder into C:\Python25\Lib > \site-packages. I also put the path to django-admin.py in my > environment variables. When I start up the interpreter I can import > django fine. But when I try to run django-admin.py from the command > line it's not recognized. > I actually installed django and got it working on another computer > about a year ago. But, had no time to really get into it. So, now I've > got time and this computer but can't remember what I did. I wish I > could just use instantdjango but it seems it would be better to figure > out a proper installation of django. > I'm just using SQLite. I don't want to make this anymore complicated > than I have to. It looks like you missed out step 4 from the install instructions at
http://docs.djangoproject.com/en/dev/topics/install/ """ On Unix-like systems, create a symbolic link to the file django-trunk/django/bin/django-admin.py in a directory on your system path, such as /usr/local/bin. For example: ln -s `pwd`/django-trunk/django/bin/django-admin.py /usr/local/bin This simply lets you type django-admin.py from within any directory, rather than having to qualify the command with the full path to the file. On Windows systems, the same result can be achieved by copying the file django-trunk/django/bin/django-admin.py to somewhere on your system path, for example C:\Python24\Scripts. """ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---