Jupyter中安装第三方库和切换pip镜像源

Posted zzg-gangan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jupyter中安装第三方库和切换pip镜像源相关的知识,希望对你有一定的参考价值。

# JJU_干干

 

1. 在Jupyter中安装第三方库和在本地安装类似,区别在于,Jupyter要在开头加一个感叹号。

  

!pip install 某包

2. 但这样往往下载较慢或者出现错误(以 lightgbm 为例):

  技术图片

  因此我们需要切换国内的镜像源更快速方便的下载,类似于本地切换镜像源类似,也是开头多加一个感叹号。

  以安装 lightgbm,切换清华源为例:

  技术图片

 

代码例子:

! pip install lightgbm -i https://pypi.tuna.tsinghua.edu.cn/simple

代码形式:

! pip install 某包 -i 某镜像源

国内常用的镜像源:

清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云: https://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣: http://pypi.douban.com/simple/
中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/simple/
山东理工大学:http://pypi.sdutlinux.org/simple/

 

以上是关于Jupyter中安装第三方库和切换pip镜像源的主要内容,如果未能解决你的问题,请参考以下文章

docker中安装jupyter,远程访问

pycharm中安装第三方库在库的搜索区提示(nohing to show)的解决办法

Centos(Linux)中安装MiniConda管理Python以及Jupyter安装和使用

jupyter lab中安装ipyleaflet的坑

尝试在我的 Anaconda 环境中安装 wptools 以在 Jupyter 中使用

在 docker 镜像中安装 Python3.9 和 pip(而不是 python 3.8)