2016-04-17 05:34:41 +02:00
|
|
|
<%
|
|
|
|
# To make changes to this man page:
|
|
|
|
#
|
2020-11-12 11:55:42 -05:00
|
|
|
# - For changes to a command under `COMMANDS` or `DEVELOPER COMMANDS` sections):
|
|
|
|
# - Find the source file in `Library/Homebrew/[dev-]cmd/<command>.{rb,sh}`.
|
|
|
|
# - For `.rb` files, edit the `<command>_args` method.
|
|
|
|
# - For `.sh` files, edit the top comment, being sure to use the line prefix
|
|
|
|
# `#:` for the comments to be recognized as documentation. If in doubt,
|
|
|
|
# compare with already documented commands.
|
|
|
|
# - For global options: Edit `Library/Homebrew/cli/parser.rb`.
|
|
|
|
# - For environment variables: Edit `Library/Homebrew/env_config.rb`.
|
2016-04-17 05:34:41 +02:00
|
|
|
# - For other changes: Edit this file.
|
|
|
|
#
|
2021-05-03 20:42:35 +05:30
|
|
|
# When done, regenerate the man page and its HTML version by running
|
|
|
|
# `brew generate-man-completions`.
|
2016-04-17 05:34:41 +02:00
|
|
|
%>
|
2020-11-12 11:55:42 -05:00
|
|
|
brew(1) -- The Missing Package Manager for macOS (or Linux)
|
|
|
|
===========================================================
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2016-04-17 05:33:21 +02:00
|
|
|
## SYNOPSIS
|
|
|
|
|
|
|
|
`brew` `--version`<br>
|
2024-03-10 03:22:53 +00:00
|
|
|
`brew` <command> \[`--verbose`\|`-v`\] \[<options>\] \[<formula>\] ...
|
2016-04-17 05:33:21 +02:00
|
|
|
|
|
|
|
## DESCRIPTION
|
|
|
|
|
|
|
|
Homebrew is the easiest and most flexible way to install the UNIX tools Apple
|
2020-11-12 11:55:42 -05:00
|
|
|
didn't include with macOS. It can also install software not packaged for your
|
2023-02-19 16:22:39 -05:00
|
|
|
Linux distribution without requiring `sudo`.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2021-06-07 10:57:27 -04:00
|
|
|
## TERMINOLOGY
|
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**formula**
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: Homebrew package definition that builds from upstream sources
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**cask**
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: Homebrew package definition that installs macOS native applications
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**prefix**
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: path in which Homebrew is installed, e.g. `/usr/local`
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**keg**
|
2023-08-12 09:29:30 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: installation destination directory of a given **formula** version, e.g. `/usr/local/Cellar/foo/0.1`
|
2023-08-12 09:29:30 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**rack**
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: directory containing one or more versioned **kegs**, e.g. `/usr/local/Cellar/foo`
|
2021-06-08 10:45:03 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**keg-only**
|
2021-06-08 10:45:03 -04:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: a **formula** is *keg-only* if it is not symlinked into Homebrew's prefix
|
|
|
|
|
|
|
|
**opt prefix**
|
|
|
|
|
|
|
|
: a symlink to the active version of a **keg**, e.g. `/usr/local/opt/foo`
|
|
|
|
|
|
|
|
**Cellar**
|
|
|
|
|
|
|
|
: directory containing one or more named **racks**, e.g. `/usr/local/Cellar`
|
|
|
|
|
|
|
|
**Caskroom**
|
|
|
|
|
|
|
|
: directory containing one or more named **casks**, e.g. `/usr/local/Caskroom`
|
|
|
|
|
|
|
|
**external command**
|
|
|
|
|
|
|
|
: `brew` subcommand defined outside of the Homebrew/brew GitHub repository
|
|
|
|
|
|
|
|
**tap**
|
|
|
|
|
|
|
|
: directory (and usually Git repository) of **formulae**, **casks** and/or **external commands**
|
|
|
|
|
|
|
|
**bottle**
|
|
|
|
|
|
|
|
: pre-built **keg** poured into a **rack** of the **Cellar** instead of building from upstream sources
|
2021-06-07 10:57:27 -04:00
|
|
|
|
2016-04-17 05:33:21 +02:00
|
|
|
## ESSENTIAL COMMANDS
|
|
|
|
|
2017-06-04 11:12:56 +01:00
|
|
|
For the full command list, see the [COMMANDS](#commands) section.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2020-11-12 11:55:42 -05:00
|
|
|
With `--verbose` or `--debug`, many commands print extra debugging information.
|
|
|
|
Note that these options should only appear after a command.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2021-11-25 09:10:59 +00:00
|
|
|
Some command behaviour can be customised with environment variables; see the [ENVIRONMENT](#environment) section.
|
|
|
|
|
2020-11-12 10:40:41 -05:00
|
|
|
### `install` <formula>
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2019-01-30 21:33:55 +00:00
|
|
|
Install <formula>.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2020-11-12 11:55:42 -05:00
|
|
|
<formula> is usually the name of the formula to install, but it has other
|
|
|
|
syntaxes which are listed in the [SPECIFYING FORMULAE](#specifying-formulae)
|
|
|
|
section.
|
2019-08-09 14:23:04 -04:00
|
|
|
|
2020-11-12 10:40:41 -05:00
|
|
|
### `uninstall` <formula>
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2019-01-30 21:33:55 +00:00
|
|
|
Uninstall <formula>.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
2020-11-12 10:40:41 -05:00
|
|
|
### `list`
|
2019-01-30 21:33:55 +00:00
|
|
|
|
|
|
|
List all installed formulae.
|
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
### `search` \[<text>\|`/`<text>`/`\]
|
2019-08-06 13:23:19 -04:00
|
|
|
|
2020-11-12 11:55:42 -05:00
|
|
|
Perform a substring search of cask tokens and formula names for <text>. If
|
2024-03-10 03:22:53 +00:00
|
|
|
<text> is flanked by slashes, it is interpreted as a regular expression. The
|
|
|
|
search for <text> is extended online to `homebrew/core` and `homebrew/cask`.
|
2019-08-20 00:04:14 -04:00
|
|
|
If no search term is provided, all locally available formulae are listed.
|
2016-04-17 05:33:21 +02:00
|
|
|
|
|
|
|
## COMMANDS
|
|
|
|
|
2019-01-30 21:33:55 +00:00
|
|
|
<%= commands %>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2016-09-05 21:46:40 +01:00
|
|
|
## DEVELOPER COMMANDS
|
|
|
|
|
2019-01-30 21:33:55 +00:00
|
|
|
<%= developer_commands %>
|
2016-09-05 21:46:40 +01:00
|
|
|
|
2020-10-03 02:45:32 +02:00
|
|
|
## GLOBAL CASK OPTIONS
|
|
|
|
|
|
|
|
<%= global_cask_options %>
|
|
|
|
|
2018-10-02 14:44:38 +05:30
|
|
|
## GLOBAL OPTIONS
|
|
|
|
|
2019-01-30 21:33:55 +00:00
|
|
|
<%= global_options %>
|
2018-10-02 14:44:38 +05:30
|
|
|
|
2016-10-02 18:21:04 +01:00
|
|
|
## OFFICIAL EXTERNAL COMMANDS
|
|
|
|
|
2020-03-11 12:22:46 +00:00
|
|
|
<%= official_external_commands %>
|
2016-10-02 18:21:04 +01:00
|
|
|
|
|
|
|
## CUSTOM EXTERNAL COMMANDS
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
Homebrew, like `git`(1), supports external commands. These are executable
|
|
|
|
scripts that reside somewhere in the `PATH`, named `brew-`<cmdname> or
|
2024-03-10 03:22:53 +00:00
|
|
|
`brew-`<cmdname>`.rb`, which can be invoked like `brew` <cmdname>. This
|
|
|
|
allows you to create your own commands without modifying Homebrew's internals.
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
Instructions for creating your own commands can be found in the docs:
|
2018-02-22 19:46:58 +00:00
|
|
|
<https://docs.brew.sh/External-Commands>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
## SPECIFYING FORMULAE
|
|
|
|
|
|
|
|
Many Homebrew commands accept one or more <formula> arguments. These arguments
|
|
|
|
can take several different forms:
|
|
|
|
|
|
|
|
* The name of a formula:
|
|
|
|
e.g. `git`, `node`, `wget`.
|
|
|
|
|
|
|
|
* The fully-qualified name of a tapped formula:
|
2016-05-01 15:00:09 +02:00
|
|
|
Sometimes a formula from a tapped repository may conflict with one in
|
|
|
|
`homebrew/core`.
|
2016-04-08 16:28:35 +02:00
|
|
|
You can still access these formulae by using a special syntax, e.g.
|
|
|
|
`homebrew/dupes/vim` or `homebrew/versions/node4`.
|
|
|
|
|
2020-05-29 17:04:42 +01:00
|
|
|
* An arbitrary file:
|
|
|
|
Homebrew can install formulae from a local path. It can point to either a
|
|
|
|
formula file or a bottle.
|
2021-01-26 15:21:24 -05:00
|
|
|
Prefix relative paths with `./` to prevent them from being interpreted as a
|
2020-11-20 11:54:40 +00:00
|
|
|
formula or tap name.
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2020-08-01 02:30:46 +02:00
|
|
|
## SPECIFYING CASKS
|
|
|
|
|
|
|
|
Many Homebrew Cask commands accept one or more <cask> arguments. These can be
|
|
|
|
specified the same way as the <formula> arguments described in
|
|
|
|
`SPECIFYING FORMULAE` above.
|
|
|
|
|
2016-04-08 16:28:35 +02:00
|
|
|
## ENVIRONMENT
|
2018-10-25 09:24:00 -04:00
|
|
|
|
2020-11-12 11:55:42 -05:00
|
|
|
Note that environment variables must have a value set to be detected. For
|
|
|
|
example, run `export HOMEBREW_NO_INSECURE_REDIRECT=1` rather than just
|
2018-12-03 21:23:06 -05:00
|
|
|
`export HOMEBREW_NO_INSECURE_REDIRECT`.
|
2018-04-07 10:10:24 +01:00
|
|
|
|
2023-07-28 17:17:14 +01:00
|
|
|
`HOMEBREW_*` environment variables can also be set in Homebrew's environment
|
|
|
|
files:
|
|
|
|
|
|
|
|
* `/etc/homebrew/brew.env` (system-wide)
|
|
|
|
|
2025-01-27 15:12:50 +00:00
|
|
|
* `${HOMEBREW_PREFIX}/etc/homebrew/brew.env` (prefix-specific)
|
2023-07-28 17:17:14 +01:00
|
|
|
|
|
|
|
* `$XDG_CONFIG_HOME/homebrew/brew.env` if `$XDG_CONFIG_HOME` is set or
|
2025-01-27 15:12:50 +00:00
|
|
|
`~/.homebrew/brew.env` otherwise (user-specific)
|
2023-07-28 17:17:14 +01:00
|
|
|
|
|
|
|
User-specific environment files take precedence over prefix-specific files and
|
|
|
|
prefix-specific files take precedence over system-wide files (unless
|
|
|
|
`HOMEBREW_SYSTEM_ENV_TAKES_PRIORITY` is set, see below).
|
|
|
|
|
2023-09-26 13:09:46 +01:00
|
|
|
Note that these files do not support shell variable expansion e.g. `$HOME` or
|
|
|
|
command execution e.g. `$(cat file)`.
|
|
|
|
|
2020-04-06 10:11:34 +01:00
|
|
|
<%= environment_variables %>
|
2017-12-19 10:59:04 +02:00
|
|
|
|
2017-11-30 14:05:06 +00:00
|
|
|
## USING HOMEBREW BEHIND A PROXY
|
2017-12-19 10:59:04 +02:00
|
|
|
|
2018-12-03 21:23:06 -05:00
|
|
|
Set the `http_proxy`, `https_proxy`, `all_proxy`, `ftp_proxy` and/or `no_proxy`
|
|
|
|
environment variables documented above.
|
|
|
|
|
|
|
|
For example, to use an unauthenticated HTTP or SOCKS5 proxy:
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2018-10-06 00:31:10 -04:00
|
|
|
export http_proxy=http://$HOST:$PORT
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2018-10-06 00:31:10 -04:00
|
|
|
export all_proxy=socks5://$HOST:$PORT
|
2018-02-01 18:11:29 +08:00
|
|
|
|
2017-11-30 14:05:06 +00:00
|
|
|
And for an authenticated HTTP proxy:
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2018-10-06 00:31:10 -04:00
|
|
|
export http_proxy=http://$USER:$PASSWORD@$HOST:$PORT
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
## SEE ALSO
|
|
|
|
|
2017-07-27 15:59:37 +01:00
|
|
|
Homebrew Documentation: <https://docs.brew.sh>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2019-08-20 02:14:09 -04:00
|
|
|
Homebrew API: <https://rubydoc.brew.sh>
|
|
|
|
|
2020-08-14 05:31:32 +02:00
|
|
|
`git`(1), `git-log`(1)
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
## AUTHORS
|
|
|
|
|
2019-02-04 17:09:31 +01:00
|
|
|
<%= lead.concat("\n") %>
|
2016-09-20 09:31:06 +01:00
|
|
|
|
2019-02-04 17:09:31 +01:00
|
|
|
<%= plc.concat("\n") %>
|
2018-08-02 13:26:02 +01:00
|
|
|
|
2019-02-04 17:09:31 +01:00
|
|
|
<%= tsc.concat("\n") %>
|
2018-01-18 15:45:51 +00:00
|
|
|
|
2019-02-04 17:09:31 +01:00
|
|
|
<%= maintainers.concat("\n") %>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2019-02-04 17:09:31 +01:00
|
|
|
<%= alumni.concat("\n") %>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
|
|
|
## BUGS
|
|
|
|
|
|
|
|
See our issues on GitHub:
|
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**Homebrew/brew**
|
|
|
|
|
|
|
|
: <https://github.com/Homebrew/brew/issues>
|
|
|
|
|
|
|
|
**Homebrew/homebrew-core**
|
|
|
|
|
|
|
|
: <https://github.com/Homebrew/homebrew-core/issues>
|
2016-04-08 16:28:35 +02:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
**Homebrew/homebrew-cask**
|
2020-08-01 02:30:46 +02:00
|
|
|
|
2024-03-10 03:22:53 +00:00
|
|
|
: <https://github.com/Homebrew/homebrew-cask/issues>
|