如何在 Ubuntu 中安装 debcargo?它在 Debian 存储库中,但不在 Ubuntu 中

如何在 Ubuntu 中安装 debcargo?它在 Debian 存储库中,但不在 Ubuntu 中

debcargo是一个 Debian 软件包,用于以 .deb 格式打包 rust 应用程序。它是可用的在 Debian Buster 及更高版本中,但我找不到Ubuntu 20.04 和 20.10 中的软件包。

为什么该软件包在 Ubuntu 中不可用?它是否以其他名称可用?

答案1

由于它适用于 Debian,因此你可以在基于靶心

使用以下命令:

cd ~/Downloads
wget http://ftp.debian.org/debian/pool/main/d/dh-cargo/dh-cargo_24_all.deb
wget http://ftp.debian.org/debian/pool/main/r/rust-debcargo/debcargo_2.4.4-1_amd64.deb
wget http://ftp.debian.org/debian/pool/main/libg/libgit2/libgit2-1.1_1.1.0+dfsg.1-4_amd64.deb

sudo apt-get install ./libgit2-1.1_1.1.0+dfsg.1-4_amd64.deb ./dh-cargo_24_all.deb ./debcargo_2.4.4-1_amd64.deb

然后开始使用debcargo


如果你更喜欢使用 Ubuntu 存储库 - 使用来自-建议的口袋:

cd ~/Downloads
wget http://archive.ubuntu.com/ubuntu/pool/universe/r/rust-debcargo/debcargo_2.4.2-1_amd64.deb
sudo apt-get install ./debcargo_2.4.2-1_amd64.deb

相关内容