bazel build tensorflow graph transform looking for /usr/bin/python3, but file does not exist (and I cannot...
I am following https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/README.md#optimizing-for-deployment and running this command:
bazel build tensorflow/tools/graph_transforms:transform_graph
and getting this error:
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: Analysis of target '//tensorflow/tools/graph_transforms:summarize_graph' failed; build aborted: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
```
The recurring line of interest (I think) is java.io.IOException: Cannot run program "/usr/bin/python3". The error message is correct:
$ ls /usr/bin/python3
ls: /usr/bin/python3: No such file or directory
But I'm not sure why it's looking for /usr/bin/python3 in the first place, as it's not in my PATH:
$ type python3
python3 is /anaconda3/bin/python3
Is bazel hardcoded to look for that path? I can't create anything in /usr/bin, see: Install Python 3 to /usr/bin/ on macOS
I don't really know what to do here. Any advice welcome.
macos tensorflow bazel tensorflow-lite
add a comment |
I am following https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/README.md#optimizing-for-deployment and running this command:
bazel build tensorflow/tools/graph_transforms:transform_graph
and getting this error:
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: Analysis of target '//tensorflow/tools/graph_transforms:summarize_graph' failed; build aborted: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
```
The recurring line of interest (I think) is java.io.IOException: Cannot run program "/usr/bin/python3". The error message is correct:
$ ls /usr/bin/python3
ls: /usr/bin/python3: No such file or directory
But I'm not sure why it's looking for /usr/bin/python3 in the first place, as it's not in my PATH:
$ type python3
python3 is /anaconda3/bin/python3
Is bazel hardcoded to look for that path? I can't create anything in /usr/bin, see: Install Python 3 to /usr/bin/ on macOS
I don't really know what to do here. Any advice welcome.
macos tensorflow bazel tensorflow-lite
add a comment |
I am following https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/README.md#optimizing-for-deployment and running this command:
bazel build tensorflow/tools/graph_transforms:transform_graph
and getting this error:
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: Analysis of target '//tensorflow/tools/graph_transforms:summarize_graph' failed; build aborted: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
```
The recurring line of interest (I think) is java.io.IOException: Cannot run program "/usr/bin/python3". The error message is correct:
$ ls /usr/bin/python3
ls: /usr/bin/python3: No such file or directory
But I'm not sure why it's looking for /usr/bin/python3 in the first place, as it's not in my PATH:
$ type python3
python3 is /anaconda3/bin/python3
Is bazel hardcoded to look for that path? I can't create anything in /usr/bin, see: Install Python 3 to /usr/bin/ on macOS
I don't really know what to do here. Any advice welcome.
macos tensorflow bazel tensorflow-lite
I am following https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/README.md#optimizing-for-deployment and running this command:
bazel build tensorflow/tools/graph_transforms:transform_graph
and getting this error:
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: /Users/daniel/software/tensorflow/tensorflow/core/BUILD:2475:1: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
and referenced by '//tensorflow/core:version_info_gen'
ERROR: Analysis of target '//tensorflow/tools/graph_transforms:summarize_graph' failed; build aborted: no such package '@local_config_git//': Traceback (most recent call last):
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 52
_fail(result.stderr)
File "/Users/daniel/software/tensorflow/third_party/git/git_configure.bzl", line 14, in _fail
fail(("%sGit Configuration Error:%s %...)))
Git Configuration Error: java.io.IOException: Cannot run program "/usr/bin/python3" (in directory "/private/var/tmp/_bazel_daniel/bff3ff07c5339b6b7496cc244d119e78/external/local_config_git"): error=2, No such file or directory
```
The recurring line of interest (I think) is java.io.IOException: Cannot run program "/usr/bin/python3". The error message is correct:
$ ls /usr/bin/python3
ls: /usr/bin/python3: No such file or directory
But I'm not sure why it's looking for /usr/bin/python3 in the first place, as it's not in my PATH:
$ type python3
python3 is /anaconda3/bin/python3
Is bazel hardcoded to look for that path? I can't create anything in /usr/bin, see: Install Python 3 to /usr/bin/ on macOS
I don't really know what to do here. Any advice welcome.
macos tensorflow bazel tensorflow-lite
macos tensorflow bazel tensorflow-lite
edited Nov 18 '18 at 4:20
kit
1,1063716
1,1063716
asked Nov 18 '18 at 2:02
Daniel Hunter
112
112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
[UPDATE] -- Running ./configure from tensorflow/ and accepting all the default options fixed my problem.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357272%2fbazel-build-tensorflow-graph-transform-looking-for-usr-bin-python3-but-file-do%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
[UPDATE] -- Running ./configure from tensorflow/ and accepting all the default options fixed my problem.
add a comment |
[UPDATE] -- Running ./configure from tensorflow/ and accepting all the default options fixed my problem.
add a comment |
[UPDATE] -- Running ./configure from tensorflow/ and accepting all the default options fixed my problem.
[UPDATE] -- Running ./configure from tensorflow/ and accepting all the default options fixed my problem.
answered Nov 18 '18 at 2:18
Daniel Hunter
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357272%2fbazel-build-tensorflow-graph-transform-looking-for-usr-bin-python3-but-file-do%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown