Since Python3
& Django
& MySQL
could be linked, I will try DB migration.
PC: MacOS X 10.9.4 Python3.4.1 Django1.7
$ python3 manage.py runserver
When I start the server, the Django screen is now displayed. http://localhost:8000/
When you migrate, the tables you need for your Django admin will be created.
$ python3 manage.py migrate
However, I can't log in because I haven't created a user. Therefore, create a super user.
$ python3 manage.py createsuperuser
When I log in as a super user and look inside the DB, the user is created properly.
Recommended Posts