使用 homebrew 安装一个 shell 脚本——安装 darktable (1_install_hb_dependencies.sh)

使用 homebrew 安装一个 shell 脚本——安装 darktable (1_install_hb_dependencies.sh)

我想使用 homebrew 从源代码构建 darktable,如下所示:Github 上的文档。我已经安装了 homebrew(步骤 0)。现在我卡在了第一步,需要安装“必需的 homebrew 包”,即1_install_hb_dependencies.sh它指向存储库中的 shell 脚本

我该如何安装 1_install_hb_dependencies.sh 以及在哪里安装?

brew install我尝试了和之类的方法,但没有成功brew tap -new。但我是自制软件的新手,不想破坏东西(我想我以前用 hb 成功做到了)。

可能是我误解了这一切,我需要运行“1_install_hb_dependencies.sh in order to install those dependencies. I.e. something like this:bash <(curl -shttps://github.com/darktable-org/darktable/blob/master/packaging/macosx/1_install_hb_dependencies.shinspired from [StackExchange][3]. This didn't work (also tried withinstead ofbash``。

任何帮助都值得感激--谢谢!

编辑:我尝试 curl -s -L https://github.com/darktable-org/darktable/blob/master/packaging/macosx/1_install_hb_dependencies.sh -o 1_install_hb_dependencies.sh受到启发这个问题。但现在我又陷入困境,不知道如何运行它。brew install不这样做。也不会bash ./1_install_hb_dependencies.sh

编辑 2:由于curl实际上并没有给我 .sh 文件,而只是某种响应,我直接从 Github 下载了 1_install_hb_dependencies.sh 并执行了chmod +x 1_install_hb_dependencies.sh。但是,brew install 1_install_hb_dependencies.sh仍然不起作用。

相关内容