Steven Luo
Steven Luo

Reputation: 2548

TensorFlow on Windows 10: “not a supported wheel on this platform” error

I was following the guide steps until get the "not a supported wheel on this platform" error. I checked the Anaconda is properly installed with the following version information:

Python 3.6.0 |Anaconda 4.3.0 (64-bit)| (default, Dec  23 2016, 11:57:13) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

Anyone know how to solve this?

Upvotes: 2

Views: 757

Answers (1)

Merwann Selmani
Merwann Selmani

Reputation: 1066

I think it's only available for Python 3.5.x not 3.6.

You can quickly create a 3.5 environment with conda create -n tensorflow python=3.5

Upvotes: 2

Related Questions