Can I plot tensorflow without android and without tensor?

I am trying to create tensorflow on a system that has no internet access. I downloaded the dependencies listed in tensorflow / workspace.bzl file externally. But now configure is trying to get a bunch of dependencies in WORKSPACE. They all look like the UI packages required for tensor.

Is there a way to change the config to skip these packages since I don't need tensor or Android code?

+3


source to share


1 answer


I tried a bunch of ways to remove external dependencies used in tensodar and it all broke the assembly since I am not experiencing basel.

But! here is what i found that worked:

  • Comment out all assembly directives for tensor and android in. / tensorflow / BUILD
  • Comment out all assembly directives for tensor in. / tensorflow / tensorboard / BUILD
  • Delete bower build file: ./ tensorflow / tensorboard / bower / BUILD. (Despite commenting on the tensor board from the higher-level BUILD files, the conversation just kept gathering)


Here's the semi-tedious part if you don't have internet access:

  • Manually load the required dependencies into. /tensorflow/workspace.bzl from external system and transfer to local system.
  • Then update. /tensorflow/workspace.bzl File path url on the system
+1


source







All Articles