Chinaunix首页 | 论坛 | 博客
  • 博客访问: 199125
  • 博文数量: 67
  • 博客积分: 375
  • 博客等级: 一等列兵
  • 技术积分: 525
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-29 22:28
文章分类

全部博文(67)

文章存档

2021年(2)

2019年(1)

2018年(19)

2017年(23)

2016年(4)

2011年(18)

我的朋友

分类: 其他平台

2018-10-09 16:56:48

Supported Ubuntu Linux platforms:

  • 16.04 (LTS)
  • 14.04 (LTS)

Install Bazel on Ubuntu using one of the following methods:

Bazel comes with two completion scripts. After installing Bazel, you can:

  • Access the 
  • Install the 

Installing using binary installer

The binary installers are on Bazel's .

The installer contains the Bazel binary1. Some additional libraries must also be installed for Bazel to work.

Step 1: Install required packages

First, install the prerequisites: pkg-config, zip, g++, zlib1g-dev, unzip, and python.

sudo apt-get install pkg-config zip g++ zlib1g-dev unzip python 

Step 2: Download Bazel

Next, download the Bazel binary installer named bazel--installer-linux-x86_64.sh from the .

Step 3: Run the installer

Run the Bazel installer as follows:

chmod +x bazel--installer-linux-x86_64.sh
./bazel--installer-linux-x86_64.sh --user 

The --user flag installs Bazel to the $HOME/bin directory on your system and sets the .bazelrc path to $HOME/.bazelrc. Use the --help command to see additional installation options.

Step 4: Set up your environment

If you ran the Bazel installer with the --user flag as above, the Bazel executable is installed in your $HOME/bin directory. It's a good idea to add this directory to your default paths, as follows:

export PATH="$PATH:$HOME/bin" 

You can also add this command to your ~/.bashrc file.

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]  stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
curl  | 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 upgrade bazel
阅读(1094) | 评论(0) | 转发(0) |
0

上一篇:Ubuntu install tensorflow

下一篇:install tensorflow

给主人留下些什么吧!~~