美文网首页
pip小技巧

pip小技巧

作者: 会跳的种子 | 来源:发表于2019-07-03 11:19 被阅读0次

pip安装jieba报错:

Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/gevent/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Max retries exceeded with url: /simple/gevent/ (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:727)'),)) - skipping

  ERROR: Could not find a version that satisfies the requirement gevent (from versions: none)

ERROR: No matching distribution found for gevent

解决方式:
通过-i参数指定源直接下载

pip --trusted-host pypi.tuna.tsinghua.edu.cn install -i https://pypi.tuna.tsinghua.edu.cn/simple jieba

相关文章

  • pip小技巧

    pip安装jieba报错: Could not fetch URL https://pypi.tuna.tsing...

  • python基础操作

    Python 第三方库安装技巧 Python 第三方库安装技巧 mac 装python库 装pip。然后用pip安...

  • 关于pip的15个使用小技巧

    认识pip 众所周知,pip可以对python的第三方库进行安装、更新、卸载等操作,十分方便。 pip的全称:pa...

  • 关于 pip 的 15 个使用小技巧

    推荐:Python全栈教程!花了29980买的从入门到精通课程,分享给大家[https://www.bilibil...

  • pip加速下载技巧

    加上-i https://pypi.douban.com/simple/这句话下载速度会很快。亲测有效喔~

  • 提升Xcode效率的小技巧

    提升Xcode效率的小技巧 提升Xcode效率的小技巧

  • 2018-11-19

    pip安装HtmlReport时报错: 最近小编遇到一个非常奇怪的问题,使用python3.6在pip安装Html...

  • pip

    查看pip版本:pip show pip 更新pip:python -m pip install --upgrad...

  • ubuntu16.04系统下创建python隔离环境

    1.升级pip pip install --upgrade pip 查看pip版本 pip --version 2...

  • pip常用命令

    pip install 包名 pip uninstall 包名 pip list pip -V pip --hel...

网友评论

      本文标题:pip小技巧

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