Recently I installed Brew. How can I retrieve a list of available brew packages to install?
相关问题
- how to split a list into a given number of sub-lis
- C#: How do i get 2 lists into one 2-tuple list in
- F#: Storing and mapping a list of functions
- Select first row from multiple dataframe and bind
- Xcode debugger displays incorrect values for varia
相关文章
- List可以存储接口类型的数据吗?
-
C# List
.FindAll 时 空指针异常 - 现在使用swift开发ios应用好还是swift?
- Visual Studio Code, MAC OS X, OmniSharp server is
- What is the complexity of bisect algorithm?
- Given a list and a bitmask, how do I return the va
- xcode 4 garbage collection removed?
- IntelliJ IDEA can't open projects or add SDK o
brew help
will show you the list of commands that are available.brew list
will show you the list of installed packages. You can also append formulae, for examplebrew list postgres
will tell you of files installed by postgres (providing it is indeed installed).brew search <search term>
will list the possible packages that you can install.brew search post
will return multiple packages that are available to install that have post in their name.brew info <package name>
will display some basic information about the package in question.You can also search http://searchbrew.com or https://brewformulas.org (both sites do basically the same thing)
Please use Homebrew Formulae page to see the list of installable packages. https://formulae.brew.sh/formula/
To install any package => command to use is :
brew install node
From the man page:
For your purposes,
brew search
will suffice.