4

随着越来越多的端口依赖于大量其他端口,并且这些端口经常升级,由于不必要的依赖升级,单个端口的安装可能需要很长时间。

我可以在安装新端口时以某种方式为我不想升级现有依赖端口的 macport 指定吗?

就像是

sudo port install --no-deps portname  #  but this does not work

我检查了 macports 指南,尝试用谷歌搜索,我发现最相似的问题是Debian:如何在不升级依赖项的情况下使用“apt-get install”?我已经尝试了答案中的选项,但它不适用于 macports。

4

1 回答 1

6

感谢,马克!

我查看了端口选项,man port发现了以下非常简单的方法:

-n       don't upgrade dependencies (affects upgrade and install) 

-b       binary-only mode (build and install from binary archives, ignore
         source, abort if no archive available)

所以port -bn install someport可以尝试作为最快的方法。

于 2013-04-11T13:36:41.640 回答