树莓派安装软件包时出现的很多依赖问题的解决
参考:树莓派想使用 aptitude 解决依赖包问题,但是使用 apt-get 安装 aptitude 时出现依赖包错误怎么办?
问题描述
树莓派如果不换源,安装软件速度就会很慢,换了国内源之后可能出现的问题
原因
树莓派镜像的版本和换的源版本不一样
树莓派的镜像源Debian系统也分好几种,wheezy、jessie、stretch、buster
用命令查看版本是什么
lsb_release -a
我这里是11版本bullseye
查看镜像源使用的地址用的是buster,难怪会有很多依赖问题。
解决
sudo nano /etc/apt/sources.list # 进入修改源地址
修改为自己的版本代号
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ bullseye main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ bullseye main non-free contrib
之后更新软件源列表
sudo apt-get update
sudo apt-get upgrade
再进行安装自己需要的软件就没什么问题了