在Pycharm中点击run manage task出错
来源:13-1 userprofile注册以及django的权限管理1
IT骚年
2017-04-10
老师 我在Pycharm中运行run manage task 出现这个错误 You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
Command 'collectstatic' skipped 这个怎么解决啊 之前运行的时候还好好的
还有关于整个工程的源码在哪里能下载呢
写回答
1回答
-
IT骚年
提问者
2017-04-10
自问自答吧
在seetings.py中加上这两句就解决了PROJECT_DIR = os.path.dirname(os.path.abspath(__file__))STATIC_ROOT = os.path.join(PROJECT_DIR, 'static')
可是我还是不明白这个错误与怎么产生的 我之前运行的时候好好打 没错误的012017-04-10
相似问题