一、安装 bazel
1、在 Ubuntu 上安装 Bazel
华为云镜像资源:https://mirrors.huaweicloud.com/bazel/
具体安装参考:https://zhuanlan.zhihu.com/p/661422615
# 选择版本
wget https://mirrors.huaweicloud.com/bazel/3.1.0/bazel-3.1.0-installer-linux-x86_64.sh
chmod +x bazel-3.1.0-installer-linux-x86_64.sh
./bazel-3.1.0-installer-linux-x86_64.sh --user
# 添加环境变量
vi /etc/profile
# 在出现的文件中末尾添加以下配置
export PATH="$PATH:$HOME/bin"
source /etc/profile
# 验证
bazel --version
参考链接:
https://github.com/bazelbuild/bazel
https://bazel.build/start/cpp?hl=zh-cn
https://bazel.google.cn/start/bazel-intro?hl=zh-cn