摘要:
Django默认安装最新版本:pip install django Django后面接版本号就可以了:pip install django==1.11.7如果使用pip install安装库比较慢,可以用豆瓣的镜像:pip install django==1.11.7 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com... 阅读全文
摘要:
找到错误代码(line146):query = query.encode(errors='replace') 解决方法:把decode改为encode即可。 阅读全文