Reputation: 11
I want to compile the Tensorflow Android demo in Ubuntu with Bazel
I also tried this command after searching but another error occurred:
sudo apt-get install lib32stdc++6 lib32z1
I changed WORKSPACE file buildtools to 26.0.2,and the result of compilation is as follows:
What I can do?
Upvotes: 0
Views: 213
Reputation: 4271
Use path names with ASCII characters only. I'm not sure Bazel works correctly with paths that contain non-ASCII characters.
Make sure you installed the Android SDK.
Open /home/fancy/AI/tensorflow/WORKSPACE
in an editor, and make sure that:
android_sdk_repository
and android_ndk_repository
rules are uncommented (don't have a #
before them), andpath
attribute, which specifies the absolute path to the Android SDK and NDK, respectivelyUpvotes: 1