更换树莓派软件源pip & apt

更换apt软件源

编辑sources.list

sudo nano /etc/apt/sources.list

注释原来的源,如下:

# deb http://raspbian.raspberrypi.org/raspbian/ stretch main contrib non-free rpi

输入中科大镜像源

deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi

编辑raspi.list

sudo nano /etc/apt/sources.list.d/raspi.list

注释原来的源,如下:

# deb http://archive.raspberrypi.org/debian/ stretch mian ui

输入中科大软件源

deb http://mirrors.ustc.edu.cn/archive.raspberrypi.org/debian/ stretch main ui

完成后建议使用sudo apt update刷新存储库索引,检查是否修改成功。

更换pip软件源

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

注意,simple 不能少, 是 https 而不是 http

设为默认

升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

你可能感兴趣的:(树莓派,python,linux)