标签:pip 添加 for install imp ati 实现 安装 simple
1.在github里面搜索djangocaptcha ,然后打开第一个,经行下载与安装(教程也有)
2.安装,pip install django-simple-captcha==0.4.6 (如果,你是虚拟环境的话,需要先进入虚拟环境,再进行安装)
3.在settigs.py 里面的 INSTALLED_APPS 的后面添加 ‘captcha‘,
4.在 urls.py里面添加url
url(r‘^captcha/‘, include(‘captcha.urls‘)),
5.同步数据库:
python manage.py makemigrations
python manage.py migrate
6.在forms.py文件里面:
标签:pip 添加 for install imp ati 实现 安装 simple
原文地址:http://www.cnblogs.com/chenyang13677/p/7771403.html