Immediately after creating a project
python manage.py runserver
I ran! I haven't played with the settings or code! An error has occurred! What to do for such a case
An error will occur if the PC account name contains 2-byte characters such as Japanese. In this case, there is no way to rename an existing account Create a new account and run with the new account
As with the account name, an error will occur if double-byte characters are used in the PC name. You can change it from Control Panel> System and Security> System> Change Settings> Computer Name> Change (restart required)
python manage.py runserver
Will try to boot using port: 8000 by default If port: 8000 is already in use and cannot be started, you can start it by specifying an unused port number.
// port:If you specify 8080
python manage.py runserver 8080
Recommended Posts