1

I would like to install Tensorflow on a High Performance Computing Cluster that use Slurm Manager. I do not have The admin right so I want to deploy Tensorflow without installing it. However I cannot find any informations about this. Does anybody know how to do this? Thanks a lot!

Guy Coder
  • 24,501
  • 8
  • 71
  • 136
Wang Duo
  • 723
  • 6
  • 11
  • For the second half of your question, see my answer to http://stackoverflow.com/questions/34826736/running-tensorflow-on-a-slurm-cluster – scarpaz Apr 22 '16 at 22:08

1 Answers1

3

The easiest way to install TensorFlow if you do not have admin (root) privileges is to install it in a virtualenv:

$ virtualenv --system-site-packages ~/tensorflow
$ source ~/tensorflow/bin/activate
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl

Full instructions are available on the TensorFlow website.

mrry
  • 125,488
  • 26
  • 399
  • 400