I am following a Django tutorial, and I am assuming to create a folder using the Windows command line (Turorial asks to enter the following into C:\):
django-admin.py startproject django_bookmarks
and I should get the following folder with these files:
django_bookmarks/
__init__.py manage.py settings.py urls.py
I tried to use c: \, c: \ Django-1.4.2.
and I get the following error messages:
"Django-1.4.2 is not recognized as an internal or external command, operating program, or batch file."
Note. Django is installed correctly. I did a python test and it correctly shows the version of Django.
How to create this folder?
Any help would be appreciated.
source
share