Reputation: 15
Hi im new to django and i cant get my web server running. First of all i viewed several of other threads and ive been searching for a solution for 4 hours and i couldn't find any help.
So this is what ive done:
So ive tried several of methods to solve this issue and have even set up environmental variables
After setting up environmental variables when i input "python -m django --version" or "python manage.py runserver" i receive an output of "'python' is not recognised as an internal or external command,operable program or batch file."
I think i haven't set up my environmental variables properly
Have i set up my environmental variables properly? Or have i done something else wrong, I can't seem to figure out the problem. Any Help would be appreciated.
Upvotes: 1
Views: 5123
Reputation: 26
The error is because you disagree with the environment variable. It has two ways of solving it.
1- You can reinstall python, in the wizard you must check the option:
"add python to environment variables".
2- the other way would be to manually agree on the environment variables, for this you create a new environment variable with the name "Path" and add the following as value:
% USERPROFILE%\AppData\Local\Microsoft\WindowsApps
C:\Python\Python37\
C:\Python\Python37\Scripts\
Upvotes: 0
Reputation: 188
I do not see the step where you have already created and activated your virtual environment already activated
virtualenv name
source name/bin/activate
Upvotes: 0