mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Update Installation.md
This commit is contained in:
parent
b41ed744c1
commit
cb9db80157
@ -2,25 +2,20 @@
|
|||||||
|
|
||||||
Instructions for a supported install of Homebrew are on the [homepage](https://brew.sh).
|
Instructions for a supported install of Homebrew are on the [homepage](https://brew.sh).
|
||||||
|
|
||||||
This script installs Homebrew to its preferred prefix (`/usr/local`
|
This script installs Homebrew to its preferred prefix (`/usr/local` for macOS Intel, `/opt/homebrew` for Apple Silicon and `/home/linuxbrew/.linuxbrew` for Linux) so that [you don’t need sudo](FAQ.md#why-does-homebrew-say-sudo-is-bad) when you `brew install`. It is a careful script; it can be run even if you have stuff installed in the preferred prefix already. It tells you exactly what it will do before it does it too. You have to confirm everything it will do before it starts.
|
||||||
for macOS Intel, `/opt/homebrew` for Apple Silicon and `/home/linuxbrew/.linuxbrew` for Linux) so that
|
|
||||||
[you don’t need sudo](FAQ.md#why-does-homebrew-say-sudo-is-bad) when you
|
|
||||||
`brew install`. It is a careful script; it can be run even if you have stuff
|
|
||||||
installed in the preferred prefix already. It tells you exactly what it will do before
|
|
||||||
it does it too. You have to confirm everything it will do before it starts.
|
|
||||||
|
|
||||||
## macOS Requirements
|
## macOS Requirements
|
||||||
|
|
||||||
* A 64-bit Intel CPU or Apple Silicon CPU <sup>[1](#1)</sup>
|
* A 64-bit Intel CPU or Apple Silicon CPU <sup>[1](#1)</sup>
|
||||||
* macOS Catalina (10.15) (or higher) <sup>[2](#2)</sup>
|
* macOS Catalina (10.15) (or higher) <sup>[2](#2)</sup>
|
||||||
* Command Line Tools (CLT) for Xcode: `xcode-select --install`,
|
* Command Line Tools (CLT) for Xcode (from `xcode-select --install` or
|
||||||
[developer.apple.com/downloads](https://developer.apple.com/downloads) or
|
[https://developer.apple.com/download/all/](https://developer.apple.com/download/all/)) or
|
||||||
[Xcode](https://itunes.apple.com/us/app/xcode/id497799835) <sup>[3](#3)</sup>
|
[Xcode](https://itunes.apple.com/us/app/xcode/id497799835) <sup>[3](#3)</sup>
|
||||||
* The Bourne-again shell for installation (i.e. `bash`) <sup>[4](#4)</sup>
|
* The Bourne-again shell for installation (i.e. `bash`) <sup>[4](#4)</sup>
|
||||||
|
|
||||||
## Git Remote Mirroring
|
## Git Remote Mirroring
|
||||||
|
|
||||||
You can set `HOMEBREW_BREW_GIT_REMOTE` and/or `HOMEBREW_CORE_GIT_REMOTE` in your shell environment to use geolocalized Git mirrors to speed up Homebrew's installation with this script and, after installation, `brew update`.
|
You can use geolocalized Git mirrors to speed up Homebrew's installation and `brew update` by setting `HOMEBREW_BREW_GIT_REMOTE` and/or `HOMEBREW_CORE_GIT_REMOTE` in your shell environment with this script:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export HOMEBREW_BREW_GIT_REMOTE="..." # put your Git mirror of Homebrew/brew here
|
export HOMEBREW_BREW_GIT_REMOTE="..." # put your Git mirror of Homebrew/brew here
|
||||||
@ -44,10 +39,7 @@ Just extract (or `git clone`) Homebrew wherever you want. Just avoid:
|
|||||||
* `/tmp` subdirectories because Homebrew gets upset.
|
* `/tmp` subdirectories because Homebrew gets upset.
|
||||||
* `/sw` and `/opt/local` because build scripts get confused when Homebrew is there instead of Fink or MacPorts, respectively.
|
* `/sw` and `/opt/local` because build scripts get confused when Homebrew is there instead of Fink or MacPorts, respectively.
|
||||||
|
|
||||||
However do yourself a favour and use the installer to install to the default prefix. Some things may
|
However do yourself a favour and use the installer to install to the default prefix. Some things may not build when installed elsewhere. One of the reasons Homebrew just works relative to the competition is **because** we recommend installing here. *Pick another prefix at your peril!*
|
||||||
not build when installed elsewhere. One of the reasons Homebrew just
|
|
||||||
works relative to the competition is **because** we recommend installing
|
|
||||||
here. *Pick another prefix at your peril!*
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
|
mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
|
||||||
@ -69,25 +61,16 @@ chmod -R go-w "$(brew --prefix)/share/zsh"
|
|||||||
|
|
||||||
### Multiple installations
|
### Multiple installations
|
||||||
|
|
||||||
Create a Homebrew installation wherever you extract the tarball. Whichever `brew` command is called is where the packages will be installed. You can use this as you see fit, e.g. a system set of libs in the default prefix and tweaked formulae for development in `~/homebrew`.
|
Create a Homebrew installation wherever you extract the tarball. Whichever `brew` command is called is where the packages will be installed. You can use this as you see fit, e.g. to have a system set of libs in the default prefix and tweaked formulae for development in `~/homebrew`.
|
||||||
|
|
||||||
## Uninstallation
|
## Uninstallation
|
||||||
|
|
||||||
Uninstallation is documented in the [FAQ](FAQ.md).
|
Uninstallation is documented in the [FAQ](FAQ.md).
|
||||||
|
|
||||||
<a name="1"><sup>1</sup></a> For 32-bit or PPC support see
|
<a name="1"><sup>1</sup></a> For 32-bit or PPC support see [Tigerbrew](https://github.com/mistydemeo/tigerbrew).
|
||||||
[Tigerbrew](https://github.com/mistydemeo/tigerbrew).
|
|
||||||
|
|
||||||
<a name="2"><sup>2</sup></a> 10.15 or higher is recommended. 10.10–10.14 are
|
<a name="2"><sup>2</sup></a> 10.15 or higher is recommended, while 10.10–10.14 are supported on a best-effort basis. For 10.4–10.6 see [Tigerbrew](https://github.com/mistydemeo/tigerbrew).
|
||||||
supported on a best-effort basis. For 10.4-10.6 see
|
|
||||||
[Tigerbrew](https://github.com/mistydemeo/tigerbrew).
|
|
||||||
|
|
||||||
<a name="3"><sup>3</sup></a> Most formulae require a compiler. A handful
|
<a name="3"><sup>3</sup></a> Most formulae require a compiler. A handful require a full Xcode installation. You can install Xcode, the CLT, or both; Homebrew supports all three configurations. Downloading Xcode may require an Apple Developer account on older versions of Mac OS X. Sign up for free at [Apple's website](https://developer.apple.com/register/index.action).
|
||||||
require a full Xcode installation. You can install Xcode, the CLT, or both;
|
|
||||||
Homebrew supports all three configurations. Downloading Xcode may require an
|
|
||||||
Apple Developer account on older versions of Mac OS X. Sign up for free
|
|
||||||
[here](https://developer.apple.com/register/index.action).
|
|
||||||
|
|
||||||
<a name="4"><sup>4</sup></a> The one-liner installation method found on
|
<a name="4"><sup>4</sup></a> The one-liner installation method found on [brew.sh](https://brew.sh) requires the Bourne-again shell, i.e. `bash`. Notably, `zsh`, `fish`, `tcsh` and `csh` will not work.
|
||||||
[brew.sh](https://brew.sh) requires the Bourne-again shell, i.e. bash.
|
|
||||||
Notably, zsh, fish, tcsh and csh will not work.
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user