虽然这似乎是一个骗局,我无法解决,我有一个完整的当前14.04 Ubuntu和更新的PIP但我得到了,想知道它是否与tensorflow的新版本相关?:
tensorflow-0.9.0rc0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.
回应:
sudo pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp27-none-linux_x86_64.whl
想知道是否有点子问题?还是车轮问题?如果python软件全部用pip安装好的话,我的运行量非常大......所以TensorFlow看起来很独特吗?
答案 0 :(得分:5)
使用Python 2它对我有用(在Ubuntu 14.04上)。
sudo pip2 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp27-none-linux_x86_64.whl
要在Python 3.4中使用它,请使用:
sudo pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp34-cp34m-linux_x86_64.whl
更多信息:https://www.tensorflow.org/versions/r0.9/get_started/os_setup.html#pip-installation