Forums

can Google's TensorFlow library be made available?

https://www.tensorflow.org/

I realise I could do a local installation, but it might be worth adding this to the "batteries included" list?

Yup. We can certainly look at getting it installed. I have created a ticket and upvoted it for you.

great.. thanks!

Any update on this? Is Tensorflow available now?

It's not installed by default, but you can install it for your own account. Just run

pip3.4 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl

...adjusting the 3.4 to match the Python version you want to use.

Hello, I followed the above instructions: pip3.4 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl

and got the following error: tensorflow-0.8.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform

I just went ahead and started a Bash Console. Maybe I should have used a different approach? (Sorry, i'm a total noob)

Thanks for help!

Now that they've released tensorflow 1.0, you should be able to install it just by running

pip3.4 install --user tensorflow

...from a bash console, replacing the 3.4 with the Python version you want to use. Could you try that and let us know how you get on?

It worked great, thanks!

Awesome, thanks for confirming :-)