pip install jupyter加源
时间: 2024-04-24 11:18:59 浏览: 210
python中提高pip install速度
5星 · 资源好评率100%
当我们使用pip安装软件包时,可以通过指定源来加速下载速度或者使用特定的源。对于安装Jupyter Notebook,可以使用以下命令来指定源:
```
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
```
上述命令中,`-i`参数用于指定源的地址,`https://pypi.tuna.tsinghua.edu.cn/simple`是清华大学提供的镜像源,可以加速下载速度。
阅读全文