我是django的新手!当我使用命令时,出现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
但是我可以成功运行服务器。
我的静态文件声明是:
STATIC_ROOT = ''
STATIC_URL = '/static/'
STATICFILES_DIRS = (
('assets', os.path.join(PROJECT_DIR, '../static')),
)
并将调试设置为true
DEBUG = True
我怎样才能解决这个问题?还有其他缺少的安装软件包吗?