Unicodedecodeerror with runserver

This sounds like this Python issue. If your computer name has non-ASCII characters this will fail. You may:

  1. Issue the runserver command with explicit host and port: python manage.py runserver 127.0.0.1:8000
  2. Change your computer name to a string that only contains ASCII characters.

Leave a Comment