python
weixin_48229148
这个作者很懒,什么都没留下…
展开
-
Django 找不到模版报错“ django.template.exceptions.TemplateDoesNotExist: index.html“
解决办法:在setting.py的TEMPLATES‘DIRS’[]加入模版路径 os.path.join(BASE_DIR, 'templates') TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], #os.path.join(BASE_DIR, '原创 2020-08-14 13:23:04 · 302 阅读 · 0 评论 -
virtualenv安装和配置
转载: https://www.cnblogs.com/xfxing/p/9503047.html转载 2020-08-12 09:52:34 · 111 阅读 · 0 评论 -
pip 源切换至国内镜像
pip 源切换至国内镜像 pip 源切换至国内镜像 使用 pip 安装软件时,使用国内镜像可以大大提高下载速度 常用国内镜像 https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学 https://mirrors.aliyun.com/pypi/simple/ # 阿里云 https://pypi.douban.com/simple/ # 豆瓣 https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学 https转载 2020-08-13 13:53:18 · 129 阅读 · 0 评论
分享