安装 mongodb 时,以下软件包有未满足的依赖关系

安装 mongodb 时,以下软件包有未满足的依赖关系

我正在尝试安装 mongodb,但执行时sudo apt install mongodb-org 出现此错误

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
 mongodb-org-mongos : Depends: libssl1.1 (>= 1.1.0) but it is not installable
 mongodb-org-server : Depends: libssl1.1 (>= 1.1.0) but it is not installable
 mongodb-org-shell : Depends: libssl1.1 (>= 1.1.0) but it is not installable
E: Unable to correct problems, you have held broken packages.

我是 Linux 新手,我应该做什么?

上下文:运行时sudo apt install libssl1.1

我明白了 E: Package 'libssl1.1' has no installation candidate

答案1

安装 libssl1.1 的解决方案是运行此

sudo -i

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb

sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb

相关内容