ubuntu pip国内源
时间: 2024-10-18 20:01:32 浏览: 47
Ubuntu 系统中通常使用的是Python的包管理工具pip,如果你在中国并希望使用国内的源来加速软件包的下载,可以更换为中国镜像源。以下是设置国内pip源的步骤:
1. **使用阿里云PyPI源**:
打开终端,运行以下命令(需要有root权限):
```
sudo apt-get install software-properties-common python-software-properties
curl https://mirrors.aliyun.com/pypi/simple/install.sh | sh
```
完成后,更新pip源列表:
```
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
```
2. **使用清华大学源**:
类似地,添加清华源:
```
sudo add-apt-repository ppa:mirrors-list/ppa && sudo apt-get update
pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
记得每次安装新包时,pip会从你配置的源获取。
相关问题
ubuntu pip 换源
要更改Ubuntu中pip的源,你可以按照以下步骤进行操作:
1. 首先,打开终端。你可以使用快捷键Ctrl+Alt+T来打开终端。
2. 执行以下命令来编辑pip的配置文件:
```
sudo nano /etc/pip.conf
```
如果提示你输入密码,请输入你的管理员密码并按Enter键。
3. 在打开的编辑器中,将以下内容粘贴到文件中:
```
<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [[Ubuntu18.04][Python][pip][国内源]Ubuntu系统的pip安装与配置国内源](https://download.csdn.net/download/weixin_38600696/14037193)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [ubuntu 更换系统软件源 和 pip源](https://blog.csdn.net/weixin_39715012/article/details/120635192)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
ubuntu pip一键换源
可以使用以下命令将pip源一键更换为国内的阿里云源:
```
sudo apt update
sudo apt install python3-pip -y
pip3 config set global.index-url https://mirrors.aliyun.com/pypi/simple/
```
第一行命令是更新系统软件包列表,第二行命令是安装Python3的pip包管理器,第三行命令是将pip源更换为阿里云源。
如果需要将pip换成清华源,可以将第三行命令中的阿里云源地址替换为清华源地址即可:
```
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
这样就可以一键将pip源更换为阿里云或者清华源,从而加速pip安装包的下载和安装。
阅读全文