Ubuntu16.04 apt update失败

apt update失败

由于项目需要,安装标注软件时,总是失败。后来查找原因,应该是源的问题,更换了阿里、清华的源之后,仍存在相同的问题。


仔细看了一下报错原因,总是提示无法下载“binary-arm64/Packages”。我的电脑不是arm架构,怎么会需要下载arm64的包呢?应该是源架构的问题。所以:

apt-get remove .*:arm64

中间会报错:

dpkg: error: cannot remove architecture 'arm64' currently in use by the database

但是会有相应提示,按照提示执行:

sudo apt-get -f install
sudo apt-get autoremove
dpkg --remove-architecture arm64
sudo apt clean
sudo apt update

即可正常更新。

你可能感兴趣的:(Ubuntu16.04 apt update失败)