zoukankan      html  css  js  c++  java
  • Python安装第三方模块jupyter报错:“Connection to pypi.org time out. (connect timeout=15):/simple”

    一、问题描述:

    1、通过pip install jupyter 第三方软件的时候报错,如下图:

    二、解决办法:

    1、更换pip源,命令:pip install jupyter -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    2、使用命令后,仍然安装不上报错如下:

    查看错误信息,提示需要升级pip版本才能正常安装

    3、升级pip版本:python -m pip install --upgrade pip

    4、使用步骤3命令升级的时候提示还是超时,如下图:

    解决办法:使用指定源进行pip的升级

      python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    升级成功,如下图:

    5、再次安装jupyter :pip install jupyter -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com,报错如下:

    解决办法:

    进入python的安装目录:D:Python3.7Libsite-packages~ip* 删除这个波浪线开头的目录就可以了

    6、然后在执行:python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 即可安装成功。

    附:国内pip的安装源地址

      阿里云 http://mirrors.aliyun.com/pypi/simple/

      中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

      豆瓣(douban) http://pypi.douban.com/simple/

      清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

      中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    感谢您的阅读,若有不足之处,欢迎指教,共同学习、共同进步。 博主网址:http://www.cnblogs.com/beginner-boy/ 如您喜欢,麻烦推荐一下;如您有新想法,欢迎提出,邮箱:582238977@qq.com。 本博客为博主原创,欢迎转载,但必须注明博客来源。
  • 相关阅读:
    Map
    Set
    集合&List
    wepy的创建与运行
    vue post请求设置为FormData传参
    数据缓存sessionStorage、localStorage、cookie、session间的区别与联系
    vue中后退不刷新页面(使用keepAlive方法)
    vue点击按钮会刷新页面
    el-date-picker日期选择器 ——[Vue warn]: Error in render: "TypeError: date.getFullYear is not a function" found in
    element-ui 中表格嵌套表单(一) 如何给table表头添加必填*星号
  • 原文地址:https://www.cnblogs.com/beginner-boy/p/15186560.html
Copyright © 2011-2022 走看看