windowspath专题

django中数据库迁移报错:TypeError: argument of type ‘WindowsPath‘ is not iterable

错误信息: TypeError: argument of type ‘WindowsPath’ is not iterable 更正措施: 在settings.py中修改DATABASES: 修改以下代码: 'NAME': BASE_DIR / 'db.sqlite3', 修改为: 'NAME': str(os.path.join(BASE_DIR, "db.sqlite3")

failed to execute WindowsPath(‘dot‘), make sure the Graphviz executables are on your systems‘ PATH

直接在jupyter 中 pip install graphviz 会提示没有配置环境变量 解决办法是去配置graphviz 的环境变量或者如下下载安装包安装,安装时勾选自动配置环境变量(没必要 pip uninstall graphviz ) Graphviz 下载地址 在安装过程中,一定要注意:将之加入到环境变量中去,如果忘了自行配置环境变量(安装完可能需要重启电脑才能生效)

Django报错TypeError: descriptor ‘format‘ for ‘str‘ objects doesn‘t apply to a ‘WindowsPath‘ object

Django报错TypeError: descriptor ‘format’ for ‘str’ objects doesn’t apply to a ‘WindowsPath’ object 原因:str字符串写法异常 更改为: TEMPLATES = [{'BACKEND': 'django.template.backends.django.DjangoTemplates',# 'DI