Tensor: Wheel on this platform is not supported

I installed both anaconda 2 and 3 on a Windows 64-bit machine. I am trying to install Tensorflow with anaconda according to the instructions here . However, when I perform the pip installation, I get the following error.

tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.

My information about anaconda:

           platform : win-64
      conda version : 4.2.13
   conda is private : False
  conda-env version : 4.2.13
conda-build version : 1.20.0
     python version : 2.7.12.final.0
   requests version : 2.13.0
   root environment : C:\Anaconda2  (writable)
default environment : C:\Anaconda2\envs\tensorflow
   envs directories : C:\Anaconda2\envs
      package cache : C:\Anaconda2\pkgs
       channel URLs : https://repo.continuum.io/pkgs/free/win-64
                      https://repo.continuum.io/pkgs/free/noarch
                      https://repo.continuum.io/pkgs/pro/win-64
                      https://repo.continuum.io/pkgs/pro/noarch
                      https://repo.continuum.io/pkgs/msys2/win-64
                      https://repo.continuum.io/pkgs/msys2/noarch
        config file : None
       offline mode : False

I would really appreciate any help since I hit my head about this from the last 8 hours.

Edit

I uninstalled Anaconda 2 and tried to install the tensor again. Getting the same error. Please find anaconda information.

            platform : win-64
      conda version : 4.2.9
   conda is private : False
  conda-env version : 4.2.9
conda-build version : 2.0.2
     python version : 3.5.2.final.0
   requests version : 2.11.1
   root environment : C:\Users\Gramener\Anaconda3  (writable)
default environment : C:\Users\Gramener\Anaconda3\envs\tensorflow
   envs directories : C:\Users\Gramener\Anaconda3\envs
      package cache : C:\Users\Gramener\Anaconda3\pkgs
       channel URLs : https://repo.continuum.io/pkgs/free/win-64/
                      https://repo.continuum.io/pkgs/free/noarch/
                      https://repo.continuum.io/pkgs/pro/win-64/
                      https://repo.continuum.io/pkgs/pro/noarch/
                      https://repo.continuum.io/pkgs/msys2/win-64/
                      https://repo.continuum.io/pkgs/msys2/noarch/
        config file : None
       offline mode : False
+6
source share
7 answers

Explicitly using python 3.5 when creating the Anaconda environment. IE:

create -n tensorflow python = 3.5

shadoworflow:

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

Hello Tensorflow https://www.tensorflow.org/install/install_windows

+8

python 3.5

conda create -n tensorflow python=3.5

+3

tensorflow v1.0 azure vm. .
shadoworflow v1.0 , , . ( r0.12 ).

. :

Anaconda , .

, python 3.5.2 python.org, .

, , tensorflow (1.0) anaconda. , anaconda, tensorflow r0.12, , , r0.12 1.0

+2

, .

-, , - Win7 64Bit, Python - 3.5.2 (64 ), Python 3.5.

-, . , , . cmd .
: , cmd TensorFlow. , , , stackoverflow .
: enter image description hereenter image description here

+1

Microsoft Windows TensorFlow Python 3.5 64-bit. , , Python 2.7.

0

: Anaconda python 3.5.2 python.org, Hello Tensorflow.

0

.

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.1-cp36-cp36m-win_amd64.whl

This is the command that runs during installation using native pip. This change happened to me

0
source

Source: https://habr.com/ru/post/1015267/


All Articles