jupyter notebook pip清华源配置
时间: 2024-10-15 11:03:23 浏览: 299
Jupyter Notebook 是一个流行的交互式数据科学环境,pip 是 Python 的包管理工具。如果你想通过清华大学的镜像加速安装Python包,可以按照以下步骤配置:
1. **创建国内镜像源**:
首先,需要添加一个名为 `pypi.tuna.tsinghua.edu.cn` 或 `pypi.mirrors.ustc.edu.cn` 的清华源,这两个地址都是常用的中国镜像。
```bash
# 使用命令行安装
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
pip install --upgrade pip
```
或者如果你使用的是 Anaconda Prompt 或 Miniconda Prompt,可以在`~/.condarc` 文件中添加类似下面的内容:
```ini
channels:
- https://mirrors.ustc.edu.cn/anaconda/cloud
- https://mirrors.ustc.edu.cn/anaconda/pkgs/main
- https://mirrors.ustc.edu.cn/anaconda/pkgs/free
- https://mirrors.ustc.edu.cn/anaconda/pkgs/r
```
2. **验证镜像是否有效**:
安装完后,你可以运行 `pip list` 来查看是否已经切换到新的源:
```bash
pip list
```
阅读全文