ubuntu pip添加清华源
时间: 2023-09-27 14:07:40 浏览: 144
要在Ubuntu上使用pip添加清华源,可以按照以下步骤进行操作:
1. 打开终端,输入以下命令查看当前的pip源配置:
```
pip config list
```
2. 如果已经存在其他源配置,可以使用以下命令删除:
```
pip config unset global.index-url
```
3. 添加清华源,使用以下命令设置pip源为清华大学镜像站:
```
pip config set global.index-url https://mirror.tuna.tsinghua.edu.cn/pypi/simple
```
4. 确认源已经成功添加,可以再次使用以下命令查看pip源配置:
```
pip config list
```
这样,你就成功将pip源配置为清华源了。现在你可以使用pip来安装软件,速度应该会更快。
#### 引用[.reference_title]
- *1* *2* *3* [Ubuntu Server 20.04 系统安装(九):pip、conda源更换为清华/阿里源、查看源、删除源](https://blog.csdn.net/u013250861/article/details/126665161)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文