ubuntu切换pip清华源详细过程
时间: 2023-11-17 13:18:05 浏览: 99
pip使用清华镜像源安装.md
切换pip清华源的详细过程如下:
1. 打开终端,输入以下命令安装pip:
```
sudo apt-get update
sudo apt-get install python3-pip
```
2. 输入以下命令备份原有的pip配置文件:
```
cp ~/.pip/pip.conf ~/.pip/pip.conf.bak
```
3. 输入以下命令创建新的pip配置文件并修改为清华源:
```
touch ~/.pip/pip.conf
echo "[global]" >> ~/.pip/pip.conf
echo "index-url = https://pypi.tuna.tsinghua.edu.cn/simple" >> ~/.pip/pip.conf
echo "[install]" >> ~/.pip/pip.conf
echo "trusted-host = pypi.tuna.tsinghua.edu.cn" >> ~/.pip/pip.conf
```
4. 输入以下命令验证是否修改成功:
```
pip config list
```
输出结果中应该包含以下内容:
```
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
```
至此,pip清华源已经成功配置好了。
阅读全文