摘要: 1.新建models文件夹 2.在新建的models文件夹下新建__init__.py文件 3.在新建的models文件夹下新建users.py class Users(models.Model): username = models.CharField(max_length=100,default 阅读全文
posted @ 2020-05-07 13:41 程序员小艺 阅读(1332) 评论(0) 推荐(1) 编辑
摘要: 在项目settings.py里面添加 sys.path.insert(0, os.path.join(BASE_DIR, 'apps')) 阅读全文
posted @ 2020-05-06 16:33 程序员小艺 阅读(349) 评论(0) 推荐(0) 编辑
摘要: pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com mysqlclient pip install --ignore-installed --upgrade django -i 阅读全文
posted @ 2020-05-05 20:40 程序员小艺 阅读(1539) 评论(0) 推荐(0) 编辑
摘要: TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTION 阅读全文
posted @ 2020-04-28 17:30 程序员小艺 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 是因为settings.py里面重复注册了app名称 阅读全文
posted @ 2020-04-28 17:28 程序员小艺 阅读(630) 评论(0) 推荐(0) 编辑
摘要: nohup command & 阅读全文
posted @ 2020-04-28 13:20 程序员小艺 阅读(912) 评论(0) 推荐(0) 编辑
摘要: 可能是因为计算机中文名称引起的 阅读全文
posted @ 2020-04-28 00:20 程序员小艺 阅读(198) 评论(0) 推荐(0) 编辑
摘要: php think worker:gateway 阅读全文
posted @ 2020-04-23 15:02 程序员小艺 阅读(457) 评论(0) 推荐(0) 编辑
摘要: face_recognition简介 face_recognition是Python的一个开源人脸识别库,支持Python 3.3+和Python 2.7。引用官网介绍: Recognize and manipulate faces from Python or from the command l 阅读全文
posted @ 2020-04-18 09:22 程序员小艺 阅读(212) 评论(0) 推荐(0) 编辑
摘要: import cv2 import dlib import numpy as np import os class Config(object): predictor_path = 'shape_predictor_68_face_landmarks.dat' test_img = 'test.jp 阅读全文
posted @ 2020-04-17 14:09 程序员小艺 阅读(268) 评论(0) 推荐(0) 编辑