python manage.py startapp XXX报错【TypeError: unsupported operand type(s) for /: 'str' and 'str'】
查看日志提示【 '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 成功
慢慢积累,脚踏实地