I enter the command to the console:
manage.py startapp lesson_one to create an application, eventually in Pycharm.manage.py opens and everything, nothing else happens, no errors appear.
What could be the problem?
I enter the command to the console:
manage.py startapp lesson_one to create an application, eventually in Pycharm.manage.py opens and everything, nothing else happens, no errors appear.
What could be the problem?
Try python manage.py startapp lesson_one
or:
python2 manage.py startapp lesson_onepython3 manage.py startapp lesson_one
python command. As a result, the command should look like python manage.py startapp lesson_one , did not notice at the beginning that @stdian wrote it to me above. - The elusive JoeSource: https://ru.stackoverflow.com/questions/903873/
All Articles