首页 > 编程语言 >python manage.py startapp XXX报错【TypeError: unsupported operand type(s) for /: 'str' and &#

python manage.py startapp XXX报错【TypeError: unsupported operand type(s) for /: 'str' and &#

时间:2022-10-19 11:14:58浏览次数:53  
标签:templates manage py 报错 str XXX DIR

查看日志提示【 'DIRS': [BASE_DIR / 'templates']】

【 File "D:\study\test\djangoProject\djangoProject\settings.py", line 57, in <module>】

找到setting文件的line57行

将【 'DIRS': [BASE_DIR / 'templates']】修改成【 'DIRS': [BASE_DIR , '/templates']】

再次执行python manage.py startapp XXX 成功

标签:templates,manage,py,报错,str,XXX,DIR
From: https://www.cnblogs.com/PanXY/p/16805500.html

相关文章