树莓派Python环境配置:删除Python 默认使用Python 3及配置Python镜像源指南
# 卸载系统自带的Python 2
sudo apt-remove python2
sudo apt-get autoremove
# 设置Python 3为默认版本
sudo apt-get install python3-minimal
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 2
# 配置国内镜像源以加速后续的软件安装
echo "deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free rpi contrib" | sudo tee /etc/apt/sources.list.d/raspbian.list
echo "deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ buster main ui" | sudo tee -a /etc/apt/sources.list.d/raspberrypi.list
# 更新软件源并清理不需要的包
sudo apt-get update
sudo apt-get upgrade
sudo apt-get autoremove
这段代码实现了以下功能:
- 卸载系统自带的Python 2,以防止版本冲突。
- 安装python3-minimal以确保Python 3的存在。
- 通过update-alternatives设置Python 3为默认版本。
- 配置国内的软件源,加快后续软件安装的速度。
- 更新软件源并清理不必要的软件包,以维护系统的整洁。
评论已关闭