Ubuntu16.04 Bazel安装
Using Bazel custom APT repository
Step 1: Install the JDK
Install JDK 8:sudo apt-get install openjdk-8-jdk
On Ubuntu 14.04 LTS you must use a PPA:sudo add-apt-repository ppa:webupd8team/java sudo apt-get update && sudo apt-get install oracle-java8-installer
Step 2: Add Bazel distribution URI as a package source
Note: This is a one-time setup step.
echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add -
If you want to install the testing version of Bazel, replace stable with testing.
Step 3: Install and update Bazel
sudo apt-get update && sudo apt-get install bazel
Once installed, you can upgrade to a newer version of Bazel with the following command:
sudo apt-get install --only-upgrade bazel
check if Bazel is installed
卸载Bazelrm -rf ~/.bazel
rm -rf ~/bin
rm -rf /usr/bin/bazel
注释~/.bashrc 中bazel的环境变量