出错代码: 如上图绿框所示,在settings.py中的'DIRS': [BASE_DIR / 'templates']
错误分析: 这个提示大概是说:“类型错误:不支持操作类型为字符串和字符串”,直接把两个字符串(BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))在前面定以为基础路径,也就是整个项目的路径)在列表中连接起来是不合适的,这里系统将“/”理解为了除号,系统理解为“字符串/字符串”。实际上这里想表达的意思将BASE_DIR 和’templates’连在一起形成一个完整路径,而“/”是路径分隔符。
修改方法: 'DIRS': [str.format(BASE_DIR, '/templates')],再次运行就成功了。
运行命令:
python manage.py runserver
pycharm可不用
python manage.py makemigrations python manage.py migrate
python manage.py createsuperuser
查看版本
django-admin --version