I was creating a new project in django. Firstly I installed django in my system but when I run the command :
python manage.py runserver
It does not work It shows a message :
python: can't open file 'manage.py': [Errno 2] No such file or directory
I installed django by running the command :
pip install django
and I started a project by running the command :
django-admin startproject Utility
Why am I seeing this error message, do anyone know?