美文网首页
安装schedule报错: Could not find a v

安装schedule报错: Could not find a v

作者: 山竹山竹px | 来源:发表于2020-07-22 15:16 被阅读0次

    目的

    安装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


    安装其他库时出现同样的报错,仍可按此方案解决

    相关文章

      网友评论

          本文标题:安装schedule报错: Could not find a v

          本文链接:https://www.haomeiwen.com/subject/vgxtlktx.html