Linux

dnf 是否與 apt 的“build-dep”等效

  • November 25, 2016

就像是

sudo apt build-dep apache

據說安裝了從原始碼建構所需的所有依賴項apache(我以前從未使用過它)。

dnf包管理器是否有等效的命令?

有,是

sudo dnf builddep httpd

builddep是一個dnf外掛,所以它沒有記錄在dnf手冊頁中。它在 DNF 外掛文件中有描述,它有自己的手冊頁,dnf.plugin.builddep(8).

引用自:https://unix.stackexchange.com/questions/326047