我似乎无法在 Docker ubuntu:vivid 镜像中安装 libsodium

我似乎无法在 Docker ubuntu:vivid 镜像中安装 libsodium

我安装了软件属性通用然后做了

add-apt-repository `deb http://archive.ubuntu.com/ubuntu vivid universe

然后尝试apt-get install libsodium——但失败了。

我该如何解决?

答案1

正如你所看到的存储库或者通过:

$apt-cache search libsodium
libsodium-dbg - Network communication, cryptography and signaturing library - debug symbols
libsodium-dev - Network communication, cryptography and signaturing library - headers
libsodium13 - Network communication, cryptography and signaturing library

没有名为 的包libsodium。它是libsodium13libsodium-devlibsodium-dbg。因此您应该尝试:

sudo apt-get update
sudo apt-get install libsodium13

答案2

我只需要执行 apt-get update。唉……存储库已添加到 docker 镜像中。显然,这已经是脑死亡了……

答案3

对于任何有兴趣并且刚刚找到这篇文章的人来说,我相信最新版本可以找到libsodium18

相关内容