blob: 69b307fbcfce1fc23ae6121499d1092f9da7cae3 [file] [log] [blame] [view]
Googler7cd006a2017-03-27 14:47:34 +00001---
Googler1fbef392017-03-22 09:05:09 +00002layout: documentation
Googler7cd006a2017-03-27 14:47:34 +00003title: Installing Bazel on macOS
4---
Googler1fbef392017-03-22 09:05:09 +00005
ahumesky71c14412017-12-08 11:55:53 -08006# <a name="mac-os-x"></a>Installing Bazel on macOS
Googler1fbef392017-03-22 09:05:09 +00007
ahumesky71c14412017-12-08 11:55:53 -08008Install Bazel on macOS using one of the following methods:
Googler1fbef392017-03-22 09:05:09 +00009
Serge70e84f82018-04-18 10:04:22 -070010* [Use the binary installer (recommended)](#install-with-installer-mac-os-x)
11* [Use Homebrew](#install-on-mac-os-x-homebrew)
Googler1fbef392017-03-22 09:05:09 +000012* [Compile Bazel from source](install-compile-source.md)
13
14Bazel comes with two completion scripts. After installing Bazel, you can:
15
Serge70e84f82018-04-18 10:04:22 -070016* Access the [bash completion script](install.md)
17* Install the [zsh completion script](install.md)
Googler1fbef392017-03-22 09:05:09 +000018
ahumesky71c14412017-12-08 11:55:53 -080019## <a name="install-with-installer-mac-os-x"></a>Installing using binary installer
Googler1fbef392017-03-22 09:05:09 +000020
laurentlb3e2854b2017-05-31 16:09:26 +020021The binary installers are on Bazel's [GitHub releases page](https://github.com/bazelbuild/bazel/releases).
Googler1fbef392017-03-22 09:05:09 +000022
Serge70e84f82018-04-18 10:04:22 -070023The installer contains the Bazel binary.<sup>1</sup> Some additional libraries must also be
24installed for Bazel to work.
Googler1fbef392017-03-22 09:05:09 +000025
Serge70e84f82018-04-18 10:04:22 -070026### Step 1: Install Xcode command line tools
Googler1fbef392017-03-22 09:05:09 +000027
28Xcode can be downloaded from the [Apple Developer
Googler18a70dc2017-05-29 16:33:17 +020029Site](https://developer.apple.com/xcode/downloads/) (this link redirects to
30their App Store).
Googler1fbef392017-03-22 09:05:09 +000031
32For `objc_*` and `ios_*` rule support, you must have Xcode 6.1 or later with iOS
33SDK 8.1 installed on your system.
34
Serge70e84f82018-04-18 10:04:22 -070035Once Xcode is installed, accept the license agreement for all users with the following command:
Googler1fbef392017-03-22 09:05:09 +000036
37```
Josh Enders0a8dde02018-02-15 01:06:36 -080038sudo xcodebuild -license accept
Googler1fbef392017-03-22 09:05:09 +000039```
40
Serge70e84f82018-04-18 10:04:22 -070041### Step 2: Download the Bazel installer
Googler1fbef392017-03-22 09:05:09 +000042
Serge70e84f82018-04-18 10:04:22 -070043Next, download the Bazel binary installer named `bazel-<version>-installer-darwin-x86_64.sh` from the [Bazel releases page on GitHub](https://github.com/bazelbuild/bazel/releases).
Googler67deac42017-10-26 20:34:56 +020044
Serge70e84f82018-04-18 10:04:22 -070045### Step 3: Run the installer
Googler1fbef392017-03-22 09:05:09 +000046
Serge70e84f82018-04-18 10:04:22 -070047Run the Bazel installer as follows:
Googler1fbef392017-03-22 09:05:09 +000048
Jamiea940a1a2018-05-17 07:47:01 -070049```
Googler67deac42017-10-26 20:34:56 +020050chmod +x bazel-<version>-installer-darwin-x86_64.sh
51./bazel-<version>-installer-darwin-x86_64.sh --user
Jamiea940a1a2018-05-17 07:47:01 -070052```
Googler1fbef392017-03-22 09:05:09 +000053
54The `--user` flag installs Bazel to the `$HOME/bin` directory on your system and
55sets the `.bazelrc` path to `$HOME/.bazelrc`. Use the `--help` command to see
56additional installation options.
57
Serge70e84f82018-04-18 10:04:22 -070058### Step 4: Set up your environment
Googler1fbef392017-03-22 09:05:09 +000059
60If you ran the Bazel installer with the `--user` flag as above, the Bazel
61executable is installed in your `$HOME/bin` directory. It's a good idea to add
62this directory to your default paths, as follows:
63
64```bash
laszlocsomor79251002017-04-03 13:09:47 +000065export PATH="$PATH:$HOME/bin"
Googler1fbef392017-03-22 09:05:09 +000066```
67
Tim Zaman64cb2292017-09-28 14:55:23 -040068You can also add this command to your `~/.bashrc` or `~/.profile` file.
Googler1fbef392017-03-22 09:05:09 +000069
Serge70e84f82018-04-18 10:04:22 -070070All set! You can confirm Bazel is installed successfully by running the following command:
71
72```bash
73bazel version
74```
75To update to a newer release of Bazel, download and install the desired version.
76
spomorski451d2c92018-04-24 07:28:10 -070077**Note:** Bazel includes an embedded JDK, which can be used even if a JDK is already
Serge70e84f82018-04-18 10:04:22 -070078installed. `bazel-<version>-without-jdk-installer-linux-x86_64.sh` is a version of the installer
79without an embedded JDK. Only use this installer if you already have JDK 8 installed. Later JDK
spomorski451d2c92018-04-24 07:28:10 -070080versions are not supported.
Serge70e84f82018-04-18 10:04:22 -070081
82## <a name="install-on-mac-os-x-homebrew"></a>Installing using Homebrew
83
84### Step 1: Install the JDK
85
86Download the JDK from [Oracle's JDK Page](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html). Look for "macOS" under "Java SE Development Kit" and download JDK version 8.
87
88### Step 2: Install Homebrew on macOS
89
90Install Homebrew (a one-time step):
91
92```bash
93/usr/bin/ruby -e "$(curl -fsSL \
94https://raw.githubusercontent.com/Homebrew/install/master/install)"
95```
96
97### Step 3: Install the Bazel Homebrew package
98
99Install the Bazel package via Homebrew as follows:
100
101```bash
102brew install bazel
103```
104
105All set! You can confirm Bazel is installed successfully by running the following command:
106
laszlocsomor79251002017-04-03 13:09:47 +0000107```bash
108bazel version
109```
Googler18a70dc2017-05-29 16:33:17 +0200110
Serge70e84f82018-04-18 10:04:22 -0700111Once installed, you can upgrade to a newer version of Bazel using the following command:
112
113```bash
114brew upgrade bazel
115```