I have added C:\Python26\Lib\site-packages\django\bin to my path, I have started a new cmd session in Windows 7, but when I try to do 'python django-admin.py ...' it says there is no file django-admin.py. When I type path, there is the full path to ...\django\bin. This is driving me nuts. Clearly it's there, but it's not working. Any suggestions?
feedback
|
|
The python interpreter does not look everywhere on your path to find the script. It does look everywhere for imports, but not for scripts. Try typing OK, If Windows doesn't run Python scripts (i.e. you have set your editor as the default python app), try: | |||||||
feedback
|
|
| |||
|
feedback
|
|
I had the same problem, and python -mdjango-admin works. but i had to define PYTHONHOME & PYTHONPATH first | |||
|
feedback
|