Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我坐在机场里,想出了一些我想尝试的东西,但是sudo port install如果 macports 下载-编译-下载-编译,我就没有时间了。但是,如果它下载了所有内容,那么我可以让它在飞机上编译。
sudo port install
如何缓存端口的依赖项但稍后编译和安装?
我会用
sudo port fetch \( {packagename} or rdepof:{packagename} \) and not installed
rdepof:递归列出你的包的所有依赖项(包括依赖项本身的依赖项)
rdepof:
and not installed排除您已安装的所有软件包。
and not installed