简体   繁体   English

不支持Tensorflow车轮安装

[英]Tensorflow Wheel Install not Supported

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl

In Anaconda3, Im trying to install the wheel but it is not working. 在Anaconda3中,我试图安装车轮,但无法正常工作。 On Windows. 在Windows上。 Using Python 3.6. 使用Python 3.6。 There isnt a 3.6 wheel. 没有3.6车轮。 I get this error: 我收到此错误:

tensorflow-0.12.1-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.

为Python 3.6使用替代的tensorflow轮:

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.2.0rc2-cp36-cp36m-win_amd64.whl

UPDATE: TensorFlow from version 1.2 forward officially supports Python 3.6 更新:从1.2版开始的TensorFlow正式支持Python 3.6

There is no wheel for Python 3.6 for currently not being supported on Windows yet. 目前Windows尚不支持Python 3.6。 As you can see here , Python 3.6 support on Windows is a work in progress. 正如你可以看到这里 ,在Windows上的Python 3.6的支持是一项正在进行的工作。 The only alternative to use TensorFlow on Windows with Python 3.6 is to build it from source. 在Windows和Python 3.6上使用TensorFlow的唯一替代方法是从源代码构建它。

I also encountered the same problem. 我也遇到了同样的问题。 Before they update TensorFlow. 在他们更新TensorFlow之前。 You can try to download the historical version of his 2016-9-27 on this website . 您可以尝试在此网站上下载他的2016-9-27的历史版本。

Just change your python version to 3.5 and then retry installing tensorflow. 只需将python版本更改为3.5,然后重试安装tensorflow。 Tensorflow is only compatible with Python 3.5 Tensorflow仅与Python 3.5兼容

conda install python=3.5

and then 接着

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Tensorflow:此平台上不支持滚轮 - Tensorflow: Not a supported wheel on this platform 安装 Tensorflow - 不支持的轮子 - Installing Tensorflow - not supported wheel Tensorflow py3.5从源代码安装:“不支持轮子”吗? - Tensorflow py3.5 install from source: “not a supported wheel”? 获取:tensorflow不是此平台上支持的轮子 - Getting: tensorflow is not a supported wheel on this platform Tensorflow“不支持车轮”,Tensorflow出现问题 - Tensorflow “wheel not supported”, Having Issues with Tensorflow 在Ubuntu 14.04(64bit)上安装TensorFlow-0.9.0rc0不受此平台支持 - Install TensorFlow-0.9.0rc0 on Ubuntu 14.04 (64bit) gets not a supported wheel on this platform 如何安装tensorflow? tensorflow-1.1.0-cp34-cp34m-win_amd64.whl不是此平台上支持的滚轮 - how to install tensorflow ? tensorflow-1.1.0-cp34-cp34m-win_amd64.whl is not a supported wheel on this platform Tensorflow 安装错误:__ is not a supported wheel on this platform - Tensorflow installing error: __ is not a supported wheel on this platform Tensorflow 安装错误:此平台不支持轮子 - Tensorflow installation error: not a supported wheel on this platform Windows上的TensorFlow:“此平台上没有支持的滚轮”错误 - TensorFlow on Windows: “not a supported wheel on this platform” error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM