Home > Mobile >  problem setting up django cant run " manage.py runserver"
problem setting up django cant run " manage.py runserver"

Time:02-24

my situation : i have windows 10 ppython 3 on the pycharm terminal i type pip install django success Then I create a folder named "pycal". On the command prompt I went to the folder "pycal". Then django-admin.py startproject newproject. This is successful. Then I run python manage.py runserver. It tells me "The system cannot execute the specified program" any feedback would be really appreciated

CodePudding user response:

C:\Users\USER\PycharmProjects\pyshop\pycal\ here just simple type


cd newproject 

after that just write

python manage.py runserver
  • Related