After running django-admin and installing I get the below error when navigating to the default django template in chrome. Firefox works without a hitch. No view, or urls updates makes any difference. Is the problem that my environment is sending the request URL twice. I assumed it had to with my local environment. But it seems to persist, in a pycharm venv or my global terminal environment. Any guidance would be appreciated.
Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/http:/127.0.0.1:8000/ {'path': 'http://127.0.0.1:8000/'} You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/60315665-844e-4c35-bc77-17ca14c4acb4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

