E: Package xxx has no installation candidate成功解决
- 2020 年 12 月 6 日
- 筆記
E: Package ‘php5’ has no installation candidate 问题
分析
首先这个问题的最主要的原因就是因为当前Linux系统的下载源中找不到相应的文件,所以说我们需要更新下载源
步骤
找到记录着下载源地址的文件
vi /etc/apt/sources.list
在下载源中添加源
deb //mirrors.ustc.edu.cn/debian stable main contrib non-free
# deb-src //mirrors.ustc.edu.cn/debian stable main contrib non-free
deb //mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
# deb-src //mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
# deb //mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
# deb-src //mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
修改完全后,执行apt-get update``apt-get upgrade
更新一下,然后再次执行apt-get install