1.Terminal运行
python manage.py runserver 8000
报错TypeError: unsupported operand type(s) for /: 'str' and 'str'
2.解决setting.py中
'DIRS': [base_DIR / 'templates']改为
'DIRS': [str.format(base_DIR, '/templates')]
3.回到manage.py运行成功
欢迎分享,转载请注明来源:内存溢出
1.Terminal运行
python manage.py runserver 8000
报错TypeError: unsupported operand type(s) for /: 'str' and 'str'
2.解决setting.py中
'DIRS': [base_DIR / 'templates']改为
'DIRS': [str.format(base_DIR, '/templates')]
3.回到manage.py运行成功
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)