1.需要的包
pip install celery==3.1.25
pip install captcha
pip install django-ckeditor==5.5.0
pip install msgpack
pip install django-simple-captcha==0.5.5
pip install django-redis
cd /d D:\PythonCode\zhihuer-master
python manage.py migrate
2.环境
3.redis安装
链接:https://github.com/MicrosoftArchive/redis/releases
版本:
解压:运行
运行成功的弹窗
4.需要更改的内容:
4.1 setting.py里面的database,passname
4.2 from django.core.urlresolvers 改为from django.urls
5.在pycharm中引入Django项目(需要pycharm的专业版本)
6.Mysql表的创建
6.1要创建什么表:models.py文件中类名为所需要的表名
6.2Mysql数据库名:与setting.py中databases中的name参数保持一致
6.3表的迁移:
python manage.py makemigrations
python manage.py migrate