TensorFlow:找不到扩展文件:'google/protobuf/protobuf.bzl'

TensorFlow: Extension file not found: 'google/protobuf/protobuf.bzl'

我正在关注 this tutorial 安装与 CUDA Compute Capability 3.0 兼容的支持 GPU 的 TensorFlow。

我安装了 Java-JDK8、Bazel 0.1.0、TensorFlow 0.6.0,并在 CUDA Compute Capability 3.0 上将配置更改为 运行。到目前为止一切都很好。

但是当我输入这个命令时:

$HOME/bin/bazel build -c opt --config=cuda //tensorflow/cc:tutorials_example_trainer

我看到这个输出:

Extracting Bazel installation...
.....
ERROR: /home/me/tensorflow/tensorflow/core/BUILD:1: Extension file not found: 'google/protobuf/protobuf.bzl'.
ERROR: /home/me/tensorflow/tensorflow/cc/BUILD:65:1: error loading package 'tensorflow/core': Extension file not found: 'google/protobuf/protobuf.bzl' and referenced by '//tensorflow/cc:tutorials_example_trainer'.
ERROR: Loading failed; build aborted.
INFO: Elapsed time: 1.006s

有什么建议吗?

问题已通过 运行 此命令修复:

$ git clone -b 0.6.0 –recurse-submodules https://github.com/tensorflow/tensorflow.git

我收到的错误消息已记录在案 here。拉取所有子模块解决了问题。

上面的命令有问题,-recurse-submodules 不存在

试试这个:

$ git clone --recursive git@github.com:tensorflow/tensorflow.git