python使用和注意
Posted zhangyx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用和注意相关的知识,希望对你有一定的参考价值。
错误:
1.Your STATICFILES_DIRS setting is not a tuple or list; "
ImproperlyConfigured: Your STATICFILES_DIRS setting is not a tuple or list; perhaps you forgot a trailing comma?
解决方案:
找到settings.py文件,
把STATICFILES_DIRS=(os.path.join(BASE_DIR,‘static‘))
改为STATICFILES_DIRS=[(os.path.join(BASE_DIR,‘static‘))]
以上是关于python使用和注意的主要内容,如果未能解决你的问题,请参考以下文章