虽然这似乎是一个欺骗,但我无法解决,我有一个完整的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软件都安装得很好的话,我正在运行相当大的数量.所以它似乎是TensorFlow独有的吗?
发布于 2016-06-08 15:09:51
使用Python 2,它为我工作(在Ubuntu14.04上)。
sudo pip2 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp27-none-linux_x86_64.whl要将其与Python3.4一起使用,请使用以下命令:
sudo pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp34-cp34m-linux_x86_64.whlhttps://stackoverflow.com/questions/37705673
复制相似问题