最近在学《Python Crash Course》第一版,可能是版本的原因,抄作业经常会出错,网上找了下解决办法。
Error–requests.exceptions.ProxyError【17.1.4 处理API响应】
调用API一直报错,请求异常,代理错误。 参考:令人不悦的Error–requests.exceptions.ProxyError python_repos.py修改:
|
|
为:
|
|
无法加载文件Scripts\Activate.ps1【18.1.4 激活虚拟环境】
ll_env\Scripts\activate
一直激活不了虚拟环境,报错无法加载文件。
参考:Win10 VS Code pipenv无法加载文件Scripts\Activate.ps1
我是直接在VS自带的终端输入Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
回车,然后就好了。
Error: Requested setting INSTALLED_APPS, but settings are not configured【18.1.6 在Django中创建项目】
新建项目django-admin.py startproject learning_log .
报错。
参考:Python [解决方法] error: Requested setting INSTALLED_APPS, but settings are not configured
修改:
|
|
为:
|
|
TypeError: init() missing 1 required positional argument: ‘on_delete‘【18.2.5 迁移模型Entry】
python manage.py makemigrations learning_logs
出错,显示TypeError: __init__() missing 1 required positional argument: ‘on_delete‘
。
参考:【异常】TypeError: init() missing 1 required positional argument: ‘on_delete‘,在【18.2.4 定义模型Entry】models.py定义外键时加上位参on_delete。 修改:
|
|
为:
|
|