TensorCPU 构建:依赖项下载问题

TensorCPU build: dependencies downloading issue

我正在尝试在我的 centos 6.5 上构建 tensorflow cpu 版本,但我被卡住了:-

bazel build -c opt  //tensorflow/cc:tutorials_example_trainer
........
WARNING: Sandboxed execution is not supported on your system and thus hermeticity of actions cannot be guaranteed. See http://bazel.io/docs/bazel-user-manual.html#sandboxing for more information. You can turn off this warning via --ignore_unsupported_sandboxing.
INFO: Downloading from http://www.ijg.org/files/jpegsrc.v9a.tar.gz: 0B

它尝试下载 jpeg/eigen/png tar 文件,但由于我的计算机没有互联网连接而无法下载。 我可以下载并将所有这些依赖项放在 tensorflow 源代码目录中的某个位置,以便构建过程自动检测它们。

您能否建议该目录的路径(相对于 tensorflow src 根目录)?或者是否有需要修改的文件?

我试着把它放在 $TENSOR_SRC_ROOT/tensorflow/contrib/cmake/external 下,但没有用。

热切期待您的回复,

感谢 bazel 开发团队,在我的环境中设置 HTTP_PROXY & HTTPS_PROXY 解决了这个问题。