美文网首页
python常见问题

python常见问题

作者: angelali_90b4 | 来源:发表于2020-11-27 16:17 被阅读0次
    1.想对pip进行update。
    image

    此时我的pip版本可用pip --version或者pip -V查看。

    一般的解决方案是:

    python -m pip install -U pip
    python -m pip install --upgrade pip
    
    如果出现以下问题
    
    image
    则是因为响应超时,可以换源update:
    
    python -m pip install --upgrade pip -i https://pypi.douban.com/simple</pre>
    

    如果出现以下问题:Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。

    image

    添加--user选项赋予权限:

    python -m pip install --upgrade pip -i https://pypi.douban.com/simple --user
    

    出现Successfully则说明安装成功:

    image

    相关文章

      网友评论

          本文标题:python常见问题

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