Installation de TensorFlow sous Windows (Python 3.6.x)

Je suis en train d'installer TensorFlow sur Windows.

J'ai essayé de l'installer avec pipmais je reçois toujours le même message d'erreur:

... is not a supported wheel on this platform.

J'ai d'abord essayé avec Python 3.5.1, maintenant j'ai mis à 3.6.0b4mais il ne fait aucune différence.


Python:

Python 3.6.0b4 (default, Nov 22 2016, 05:30:12) [MSC v.1900 64 bit (AMD64)] on win32

pip:

pip 9.0.1 from ...\python\lib\site-packages (python 3.6)

Pour être exact, j'ai essayé les deux commandes suivantes:

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
pip install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl

ils sortie suivants:

> tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.
> tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.

Personne ne sait comment résoudre ce problème? Je ne suis pas sûr de l'endroit où je suis en train de faire une erreur.

Merci!


Edit 1

Btw, j'ai aussi essayé pip install tensorflow et pip install tensorflow-gpu comme suggéré ici. J'ai obtenu le résultat suivant:

> Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow
> Could not find a version that satisfies the requirement tensorflow-gpu (from versions: ) No matching distribution found for tensorflow-gpu

source d'informationauteur Tobias Würth