I recently installed Django and below is the installation path
C:\Program Files (x86)\Python Software Foundation\Python\Lib\site-packages\
I added the path to the PATH environment variable and I tried django-admin command in the cmd prompt. I am getting the below error:
'django-admin' is not recognized as an internal or external command, operable program or batch file.
Whereas if I go into the django's bin folder and issue the same django-admin command, I am getting the below error
Traceback (most recent call last): File "C:\Program Files (x86)\Python Software Foundation\Python\Lib\site-packag es\django\bin\django-admin.py", line 2, in from django.core import management ImportError: No module named 'django'
All I want is for Django to create a website for me inside the project folder that I have created. Any help on how to fix this will help me started with Django.