Java教程

解决Ubuntu命令“sudo apt-get install”——“ E: 无法定位软件包”问题

本文主要是介绍解决Ubuntu命令“sudo apt-get install”——“ E: 无法定位软件包”问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. 添加镜像源 (本文是清华源)。运行代码:

sudo vim /etc/apt/sources.list

添加如下内容:

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
 

2.更新源

sudo apt-get update

3.接下来便可以安装未成功安装的软件包了,并且速度会比之前更快

这篇关于解决Ubuntu命令“sudo apt-get install”——“ E: 无法定位软件包”问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!