I create a new project on Django using PyCharm. I do not change anything. When starting a project, the error is knocked out:
"C:\Program Files (x86)\JetBrains\PyCharm 5.0.3\bin\runnerw.exe" C:\Python34\python.exe E:/Projects/Proj_test/manage.py runserver 8000 Performing system checks... System check identified no issues (0 silenced). You have unapplied migrations; your app may not work properly until they are applied. Run 'python manage.py migrate' to apply them. January 23, 2016 - 12:55:37 Django version 1.9.1, using settings 'Proj_test.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK. Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x036E9078> Traceback (most recent call last): [...] File "C:\Python34\lib\http\server.py", line 138, in server_bind self.server_name = socket.getfqdn(host) File "C:\Python34\lib\socket.py", line 467, in getfqdn hostname, aliases, ipaddrs = gethostbyaddr(name) UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc2 in position 0: invalid continuation byte The situation is similar when using Visual Studio. Changing the version of Python does not solve. I use Windows 7.
Tell me how you can solve this error.