安装conda/pip/清华源
时间: 2023-11-14 09:07:45 浏览: 108
conda 清华源配置 pip清华源配置 anconda
5星 · 资源好评率100%
安装conda/pip/清华源的步骤如下:
1. 安装conda:可以从官网下载对应操作系统的安装包进行安装,也可以使用Miniconda进行安装。
2. 安装pip:在安装了Python之后,pip已经自带安装了。如果没有安装,可以使用以下命令进行安装:
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
```
3. 使用清华源:可以使用以下命令将pip源更换为清华源:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
阅读全文