目的
安装schedule
代码
使用-i,加了镜像,提高速度
pip install schedule -i http://pypi.douban.com/simple/
报错
WARNING: The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we
recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.douban.com'.
警告:位于pypi.douban.com的存储库不是受信任或安全的主机,将被忽略。
如果该存储库可通过HTTPS使用,我们建议您改用HTTPS,否则您可以忽略此警告,并通过“ --trusted-host pypi.douban.com”允许它。
ERROR: Could not find a version that satisfies the requirement schedule (from versions: none)
ERROR: No matching distribution found for schedule
原因
位于pypi.douban.com的存储库不是受信任或安全的主机,将被忽略
解决
看警告的提示,有两种解决方法
第一,使用https
pip install schedule -i https://pypi.douban.com/simple/
第二,加参数,--trusted-host pypi.douban.com
pip install schedule -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
我这里使用法一,成功安装
Installing collected packages: schedule
Successfully installed schedule-0.6.0
安装其他库时出现同样的报错,仍可按此方案解决
网友评论