Skip to content Skip to sidebar Skip to footer

Anaconda Installation Of Tensorflow Fails With Debian 8 Virtualbox

I'm trying to install Tensorflow. I created a fresh Debian 8 VirtualBox for this purpose. Following the instructions here I downloaded and installed Anaconda with Python 3. I creat

Solution 1:

This appears to be a "known" issue from the following issue. Which paraphrased you should be able to download https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl and change the name of the .whl to tensorflow-0.8.0-py3-none-linux_x86_64.whl and install it correctly. There has been a change to the github documentation for Tensorflow to set the python version to 3.4 instead of 3.5. However, it appears this change hasn't made it to Tensorflow.org's documentation

# Python 3.4
$ conda create -n tensorflow python=3.4

Post a Comment for "Anaconda Installation Of Tensorflow Fails With Debian 8 Virtualbox"