I followed the instructions here to run Django using the built-in webserver and was able to successfully run it using python manage.py runserver. If I access 1
python manage.py runserver
I had to add this line to settings.py in order to make it work (otherwise it showed an error when accessed from another computer)
ALLOWED_HOSTS = ['*']
then ran the server with:
python manage.py runserver 0.0.0.0:9595
Also ensure that the firewall allows connections to that port