python manage.py collectstatic
报错
django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
https://docs.djangoproject.com/en/1.10/ref/settings/#static-files
在settings.py中增加
STATIC_ROOT = os.path.join(BASE_DIR, 'static')