问题描述
我坐在机场的这儿,想出了一些我想尝试的东西,但是如果macports downloads-compiles-downloads-compiles,我将没有时间sudo port install
.但是,如果下载了所有内容,那么我可以在飞机上对其进行编译.
I am sitting here in an airport, came up with something that I'd like to try, but I won't have time to sudo port install
if macports downloads-compiles-downloads-compiles. If it downloaded everything, however, then I can have it compile on the plane.
如何缓存端口的依存关系,但以后再编译和安装?
How can I cache a port's dependencies but compile and install later?
推荐答案
我会使用
sudo port fetch \( {packagename} or rdepof:{packagename} \) and not installed
rdepof:
递归列出程序包的所有依赖项(包括依赖项本身的依赖项)
rdepof:
recursively lists all dependencies of your package (including the dependencies of the dependencies themselves)
and not installed
排除所有已经安装的软件包.
and not installed
excludes all packages you have already installed.
这篇关于指示Macports下载但不安装端口的依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!