[Answered ]-Python manage.py runserver not work

1👍

Considering you are using a proxy (as mentioned in the comments). The reason for this error:

This Page Cannot Be Displayed

The system cannot communicate with the external server ( 127.0.0.1 ). The Internet server may be busy, may be permanently down, or may be unreachable because of network problems. ……

is that 127.0.0.1 is looked up at the proxy and on the proxy server there is nothing listening on port 8080

👤dmg

1👍

Use ‘python manage.py runserver 8000’ instead of ‘python manage.py runserver 8080’
Worked for me.

Leave a comment