Running whole Django project in Pycharm instead of running only a file

Hello
I can not run whole Django project in Pycharm and I am getting following error :

could anyone help to solve?
Thanks a lot

That is because this is not how you start a Django server, when we look at the documentation it states that to run the server you have to run python manage.py runserver. And to configure that [1] all you have to do is set the script to the manage.py file and the script parameters to runserver, here an example:


  1. in PyCharm Community, PyCharm Pro has special Django support where it maybe be different ↩ī¸Ž

1 Like

Thank you very much