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?

  • one
    Have you run on both python2 and python3? If on the same version, then put it in the label - gil9red
  • @gil9red sorry for the stupid question, but how to do it? - The Elusive Joe
  • How to determine the version of python or how to specify the label after creating a question? - gil9red

1 answer 1

Try python manage.py startapp lesson_one
or:

python2 manage.py startapp lesson_one
python3 manage.py startapp lesson_one

  • Your option did not help, but I once again tried to insert the previous command and it all worked. I don’t even understand what the error actually was, I didn’t change the team in principle. - The Elusive Joe
  • Now I understood what the problem was, I had to specify it at the beginning of the 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 Joe