I am not Fat
I am not Fat

Reputation: 447

How do install tensor flow gpu?

I am currently having some problems installing tensor flow with gpu support.

This is the guide i've followed.

the last one don't finish.. or it does.. it comes up with an error message

a@fe1:~/tensorflow$ bazel build -c opt --config=cuda //tensorflow/tools/pip_package:build_pip_package

.
WARNING: Sandboxed execution is not supported on your system and thus hermeticity of actions cannot be guaranteed. See http://bazel.build/docs/bazel-user-manual.html#sandboxing for more information. You can turn off this warning via --ignore_unsupported_sandboxing.

Server finished RPC without an explicit exit code

after this should i be able to do this

bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tenso
rflow_pkg

according to the guide, but is not possible.

i've previously had tensor flow cpu version running, but since the need of gpu were sincerely pressing i decided to install it... but didn't think it would be this troublesome..

any idea on why it is not possible to build it?

os:centOS 7.1 gpu:nvidea

Upvotes: 0

Views: 503

Answers (1)

Tatami
Tatami

Reputation: 45

I've had problems attemping to install Tensorflow from source using Bazel as well.It could be that the current bazel build has problems,since that occured in the past with me.It would help if you provided us with information about your system(OS & GPU),but you're probably better off using pip(or pip3) and doing sudo pip(3) install tensorflow-gpu.

Upvotes: 0

Related Questions