摘要:
1.新建models文件夹 2.在新建的models文件夹下新建__init__.py文件 3.在新建的models文件夹下新建users.py class Users(models.Model): username = models.CharField(max_length=100,default 阅读全文
摘要:
在项目settings.py里面添加 sys.path.insert(0, os.path.join(BASE_DIR, 'apps')) 阅读全文
摘要:
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com mysqlclient pip install --ignore-installed --upgrade django -i 阅读全文
摘要:
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTION 阅读全文
摘要:
是因为settings.py里面重复注册了app名称 阅读全文
摘要:
nohup command & 阅读全文
摘要:
可能是因为计算机中文名称引起的 阅读全文
摘要:
php think worker:gateway 阅读全文
摘要:
face_recognition简介 face_recognition是Python的一个开源人脸识别库,支持Python 3.3+和Python 2.7。引用官网介绍: Recognize and manipulate faces from Python or from the command l 阅读全文
摘要:
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 阅读全文