• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

用pyhon下载jupyter遇到的问题pip版本过低

武飞扬头像
Mooder579
帮助1

首先安装jupyter 的前提是需要提前安装python 3.3版本及以上。然后输入 pip install jupyter,出现下面问题

python -V //在命令行窗口输入,验证python的版本
pip install jupyter

学新通

最后出现

  1.  
    [notice] A new release of pip available: 22.3.1 -> 23.0.1
  2.  
    [notice] To update, run: python.exe -m pip install --upgrade pip

 说明pip版本过低,输入 python.exe -m pip install --upgrade pip.

  1.  
    C:\Users\唐文杰>python.exe -m pip install --upgrade pip
  2.  
    Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
  3.  
    Requirement already satisfied: pip in d:\python.last\lib\site-packages (22.3.1)
  4.  
    WARNING: The repository located at mirrors.aliyun.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 mirrors.aliyun.com'.

出现这个问题

WARNING: The repository located at mirrors.aliyun.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 mirrors.aliyun.com'.

pip命令后面加上--trusted-host mirrors.aliyun.com

pip install jupyter -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

最后只是解决了pip在安装第三方包的时候,在 pip install 第三方包 后面加 新的镜像源地址,再加--trusted-host mirrors.aliyun.com

pip更新问题还存在

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgfijig
系列文章
更多 icon
同类精品
更多 icon
继续加载