首先安装jupyter 的前提是需要提前安装python 3.3版本及以上。然后输入 pip install jupyter,出现下面问题
python -V //在命令行窗口输入,验证python的版本
pip install jupyter
[notice] A new release of pip available: 22.3.1 -> 23.0.1
[notice] To update, run: python.exe -m pip install --upgrade pip
说明pip版本过低,输入 python.exe –m pip install —upgrade pip.
C:Users唐文杰>python.exe -m pip install --upgrade pip
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Requirement already satisfied: pip in d:python.lastlibsite-packages (22.3.1)
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‘.
通过查找资料(32条消息) 已解决(pip报错)WARNING: The repository located at mirrors .aliyun.com is not a trusted or secure host and_袁袁袁袁满的博客-CSDN博客,发现需要设置信任的镜像地址
在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
,
原文地址:https://blog.csdn.net/weixin_55689450/article/details/129403676
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_35890.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!