How To Reduce "python ...path...django-admin.py Startproject Myprojname" To "django-admin.py Startproject Myprojname"?
UPDATED: See the bottom The first step of the Django tutorial instructs you to create a new project like this django-admin.py startproject mysite2 When I do that, it fails: R:\je
Solution 1:
The other suggestions are valid. Check your paths, check both user and system PATH variables. Once you make sure only the right remains, try again.
Now, a slightly different approach. Sometimes, it is necessary to have multiple versions of a software (including python). This is why it is highly recommended to use virtualenv (and virtualenvwrapper) to isolate python environments. With virtualenv you can install the version of python you need for you code without clashing with other python versions on your system. Python3 comes with virtualenv, but you can read more on virtualenv here and virutalenvwrapper here.
Post a Comment for "How To Reduce "python ...path...django-admin.py Startproject Myprojname" To "django-admin.py Startproject Myprojname"?"