一、 安装MySQL8.0.16
详细安装步骤:https://www.cnblogs.com/wodekaifalog/p/10832094.html
将数据库脚本导入安装好的MySQL中
二、 安装Python3
详细安装步骤:https://www.cnblogs.com/weven/p/7252917.html
三、 通过python3的pip安装
Django,命令:pip install django
Pymysql 命令:pip install pymysql
进入程序主目录,然后修改数据库地址密码:xueshenghui\settings.py里面的DATABASES参数
进入程序主目录,运行python manage.py runserver 0.0.0.0:80
然后再浏览器打开http://127..0.0.1/
1