无法找到软件包 libssl-dev 并且我找不到解决方案

无法找到软件包 libssl-dev 并且我找不到解决方案

我正在尝试安装 libssl-dev,但一直收到错误“无法找到包 libssl-dev”

答案1

使用

apt-cache search libssl

了解它是否适​​合您。

另外,请确保您的存储库配置正确:

19.10 来源.列表
18.04 来源.列表
16.04 来源.列表

这里不支持 Kali,但同样的也适用于它:确保你的存储库配置正确

存储库修正后,请使用sudo apt update然后重新检查。

在 19.10 上正确配置存储库apt-cache search返回:

$ apt-cache search libssl-dev
libssl-dev - Secure Sockets Layer toolkit - development files
perl-openssl-defaults - version compatibility baseline for Perl OpenSSL packages

20.04 来源.列表

$ cat /etc/apt/sources.list | grep -v "#"

deb http://archive.ubuntu.com/ubuntu/ focal main restricted

deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted

deb http://archive.ubuntu.com/ubuntu/ focal universe
deb http://archive.ubuntu.com/ubuntu/ focal-updates universe

deb http://archive.ubuntu.com/ubuntu/ focal multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-updates multiverse

deb http://security.ubuntu.com/ubuntu focal-security main restricted
deb http://security.ubuntu.com/ubuntu focal-security universe
deb http://security.ubuntu.com/ubuntu focal-security multiverse                                                                                              

deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse                                                                    

deb http://archive.canonical.com/ubuntu focal partner

相关内容