How to make a package installed-by-request #4043
Answered
by
Bo98
nobrowser
asked this question in
Everyday usage
-
The scenario is as follows:
How to do that? At least some similar packaging systems have a command like this. For example, opam has |
Beta Was this translation helpful? Give feedback.
Answered by
Bo98
Dec 12, 2022
Replies: 2 comments 2 replies
-
Have you tried |
Beta Was this translation helpful? Give feedback.
1 reply
-
A couple things about it to be aware:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nobrowser
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brew install
will do this. If it is already installed, it will set it to installed on request.A couple things about it to be aware:
--quiet
.brew upgrade
that formula too so that the latest version is installed. If this is a problem, you can doHOMEBREW_NO_INSTALL_UPGRADE=1 brew install
instead.