Troubleshooting#

We are doing the best we can so you do not have to read this section.

That said, we have included solutions (or at least explanations) for some common problems below.

If you do not find a solution to your problem here, please ask for help!

socket.error: [Errno 48] Address already in use#

Another process has occupied Django’s default port 8000.

To fix this, see which service is running on port 8000:

$ sudo lsof -i :8000

and kill the process using PID from output:

$ kill -kill [PID]

DOMException / SecurityError: “The operation is insecure.”#

This means that the navigator.credentials Javascript API refused to start because you are not in a secure context.

This means that either: