python 安装jupyter的坑

收藏一个博客,在安装jupyter时遇到很多坑,一会这个报错,一会那个报错的。

https://blog.csdn.net/sdmfs_tm/article/details/104851458

解决pip使用异常 No module named 'pip'

https://www.jianshu.com/p/8cba020b284b

可以在pip后面加上一句

-i https://pypi.douban.com/simple/ --trusted-host pypi.douban.com

豆瓣镜像,加速下载包,国内网速卡住的话,会pip失败。

例如:

pip install --user --ignore-installed jupyter  -i https://pypi.douban.com/simple/ --trusted-host pypi.douban.com

你可能感兴趣的:(python学习笔记)