I'm new to Django and now getting stuck in running up the server. I've installed the following components on Windows 10:
Python 3.7.0
Django 1.11.14
Geckodriver 0.21.0
I can successfully create a project using django-admin.py startproject {project_name} .
but when I run python manage.py runserver
, the Git Bash doesn't seem to make any progress and the process gets stuck there forever.
$ python manage.py runserver
|
I'm supposed to get something like the following output though,
Performing system checks...
System check identified no issues (0 silenced).
Django version 1.8.3, using settings 'projectname.settings' Starting >development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK.
I've also activated the virtualenv
too. What could be the cause of this problem?