Ubuntu has python2.7 installed by default.
Installing Django
Apt Install python-django;
Install MySQL
Apt Install mysql-server* * stands for version number
Vim/etc/mysql/mysql.conf.d/mysqld.cnf
Add character-set-server = UTF8 Set the server-side encoding UTF8 no spaces: Step on the pit carefully.
VIM/ETC/MYSQL/CONF.D/MYSQL.CNF adding Default-character-set=utf8 Client UTF8 encoding
Service MySQL restart restart MySQL services
Installation drive apt Install PYTHON-MYSQLDB
Complete installation of the environment!
Django-admin startproject name ... Create a project
Operation Engineering
Python manage. py runserver [0.0.0.0: Port number] (0.0.0.0 on behalf of any IP can be accessed without write default native access)
Vim settings.py Add your domain name in allowed_hosts
Python manage.py makemigrations
Python manage.py Migrate
Initialize Project
This appears. Representative Success!!
Ubuntu builds Django Environment