Googler | 7cd006a | 2017-03-27 14:47:34 +0000 | [diff] [blame] | 1 | --- |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 2 | layout: documentation |
Googler | 7cd006a | 2017-03-27 14:47:34 +0000 | [diff] [blame] | 3 | title: Installing Bazel on macOS |
| 4 | --- |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 5 | |
ahumesky | 71c1441 | 2017-12-08 11:55:53 -0800 | [diff] [blame] | 6 | # <a name="mac-os-x"></a>Installing Bazel on macOS |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 7 | |
ahumesky | 71c1441 | 2017-12-08 11:55:53 -0800 | [diff] [blame] | 8 | Install Bazel on macOS using one of the following methods: |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 9 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 10 | * [Use the binary installer (recommended)](#install-with-installer-mac-os-x) |
| 11 | * [Use Homebrew](#install-on-mac-os-x-homebrew) |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 12 | * [Compile Bazel from source](install-compile-source.md) |
| 13 | |
| 14 | Bazel comes with two completion scripts. After installing Bazel, you can: |
| 15 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 16 | * Access the [bash completion script](install.md) |
| 17 | * Install the [zsh completion script](install.md) |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 18 | |
ahumesky | 71c1441 | 2017-12-08 11:55:53 -0800 | [diff] [blame] | 19 | ## <a name="install-with-installer-mac-os-x"></a>Installing using binary installer |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 20 | |
laurentlb | 3e2854b | 2017-05-31 16:09:26 +0200 | [diff] [blame] | 21 | The binary installers are on Bazel's [GitHub releases page](https://github.com/bazelbuild/bazel/releases). |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 22 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 23 | The installer contains the Bazel binary.<sup>1</sup> Some additional libraries must also be |
| 24 | installed for Bazel to work. |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 25 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 26 | ### Step 1: Install Xcode command line tools |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 27 | |
| 28 | Xcode can be downloaded from the [Apple Developer |
Googler | 18a70dc | 2017-05-29 16:33:17 +0200 | [diff] [blame] | 29 | Site](https://developer.apple.com/xcode/downloads/) (this link redirects to |
| 30 | their App Store). |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 31 | |
| 32 | For `objc_*` and `ios_*` rule support, you must have Xcode 6.1 or later with iOS |
| 33 | SDK 8.1 installed on your system. |
| 34 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 35 | Once Xcode is installed, accept the license agreement for all users with the following command: |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 36 | |
| 37 | ``` |
Josh Enders | 0a8dde0 | 2018-02-15 01:06:36 -0800 | [diff] [blame] | 38 | sudo xcodebuild -license accept |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 39 | ``` |
| 40 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 41 | ### Step 2: Download the Bazel installer |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 42 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 43 | Next, 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). |
Googler | 67deac4 | 2017-10-26 20:34:56 +0200 | [diff] [blame] | 44 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 45 | ### Step 3: Run the installer |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 46 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 47 | Run the Bazel installer as follows: |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 48 | |
Jamie | a940a1a | 2018-05-17 07:47:01 -0700 | [diff] [blame] | 49 | ``` |
Googler | 67deac4 | 2017-10-26 20:34:56 +0200 | [diff] [blame] | 50 | chmod +x bazel-<version>-installer-darwin-x86_64.sh |
| 51 | ./bazel-<version>-installer-darwin-x86_64.sh --user |
Jamie | a940a1a | 2018-05-17 07:47:01 -0700 | [diff] [blame] | 52 | ``` |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 53 | |
| 54 | The `--user` flag installs Bazel to the `$HOME/bin` directory on your system and |
| 55 | sets the `.bazelrc` path to `$HOME/.bazelrc`. Use the `--help` command to see |
| 56 | additional installation options. |
| 57 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 58 | ### Step 4: Set up your environment |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 59 | |
| 60 | If you ran the Bazel installer with the `--user` flag as above, the Bazel |
| 61 | executable is installed in your `$HOME/bin` directory. It's a good idea to add |
| 62 | this directory to your default paths, as follows: |
| 63 | |
| 64 | ```bash |
laszlocsomor | 7925100 | 2017-04-03 13:09:47 +0000 | [diff] [blame] | 65 | export PATH="$PATH:$HOME/bin" |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 66 | ``` |
| 67 | |
Tim Zaman | 64cb229 | 2017-09-28 14:55:23 -0400 | [diff] [blame] | 68 | You can also add this command to your `~/.bashrc` or `~/.profile` file. |
Googler | 1fbef39 | 2017-03-22 09:05:09 +0000 | [diff] [blame] | 69 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 70 | All set! You can confirm Bazel is installed successfully by running the following command: |
| 71 | |
| 72 | ```bash |
| 73 | bazel version |
| 74 | ``` |
| 75 | To update to a newer release of Bazel, download and install the desired version. |
| 76 | |
spomorski | 451d2c9 | 2018-04-24 07:28:10 -0700 | [diff] [blame] | 77 | **Note:** Bazel includes an embedded JDK, which can be used even if a JDK is already |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 78 | installed. `bazel-<version>-without-jdk-installer-linux-x86_64.sh` is a version of the installer |
| 79 | without an embedded JDK. Only use this installer if you already have JDK 8 installed. Later JDK |
spomorski | 451d2c9 | 2018-04-24 07:28:10 -0700 | [diff] [blame] | 80 | versions are not supported. |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 81 | |
| 82 | ## <a name="install-on-mac-os-x-homebrew"></a>Installing using Homebrew |
| 83 | |
| 84 | ### Step 1: Install the JDK |
| 85 | |
| 86 | Download 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 | |
| 90 | Install Homebrew (a one-time step): |
| 91 | |
| 92 | ```bash |
| 93 | /usr/bin/ruby -e "$(curl -fsSL \ |
| 94 | https://raw.githubusercontent.com/Homebrew/install/master/install)" |
| 95 | ``` |
| 96 | |
| 97 | ### Step 3: Install the Bazel Homebrew package |
| 98 | |
| 99 | Install the Bazel package via Homebrew as follows: |
| 100 | |
| 101 | ```bash |
| 102 | brew install bazel |
| 103 | ``` |
| 104 | |
| 105 | All set! You can confirm Bazel is installed successfully by running the following command: |
| 106 | |
laszlocsomor | 7925100 | 2017-04-03 13:09:47 +0000 | [diff] [blame] | 107 | ```bash |
| 108 | bazel version |
| 109 | ``` |
Googler | 18a70dc | 2017-05-29 16:33:17 +0200 | [diff] [blame] | 110 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 111 | Once installed, you can upgrade to a newer version of Bazel using the following command: |
| 112 | |
| 113 | ```bash |
| 114 | brew upgrade bazel |
| 115 | ``` |