树莓派pip更换下载源
时间: 2023-07-07 07:46:54 浏览: 180
树莓派+更换软件源
可以通过修改pip的配置文件来更换下载源,具体步骤如下:
1. 打开终端,输入以下命令打开pip的配置文件:
```
nano ~/.pip/pip.conf
```
2. 在打开的文件中添加以下内容,其中`<mirror-url>`是你要使用的镜像源地址:
```
[global]
index-url = <mirror-url>
trusted-host = <mirror-url>
```
例如,如果你要使用清华大学的镜像源,可以添加以下内容:
```
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
```
3. 保存修改并退出编辑器,然后就可以使用新的镜像源了。
注意:如果你的树莓派系统没有安装pip,可以通过以下命令安装:
```
sudo apt-get install python-pip
```
阅读全文