Tensorfow Installation - Wheel Not Supported

I installed Python versions 3.5 and 3.6 and anaconda.

When you try to install tensorflow, the following procedure occurs when you complete the following steps: https://www.tensorflow.org/install/install_windows unsing anaconda

(tensor stream) C:> pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.1-cp35-cp35m-win_amd64.whl

tensorflow-1.0.1-cp35-cp35m-win_amd64.whl does not support the wheel on this platform.

Since I'm new to Python, I don't know how to get around this problem. I am using Win10 with 64-bit.

Thanks a lot and better

Martin

+4
source share
7

. , Python 3.6 ( , Python 3.5, , , - , ):

anaconda, , python 3.5 tenensflow:

conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
\# or
\# pip install tensorflow-gpu

python=3.5 , Python 3.5.

tenorflow ( conda create conda), . CondaValueError: Value error: prefix already exists: C:\[your environment location] " CondaValueError: Value error: prefix already exists: C:\[your environment location] " ( , , .)

, Conda, (tensor flow) , deactivate, conda remove --prefix ~/bioenvcopy --all. , ~/bioenvcopy . , conda info --envs ( ). , , conda remove --prefix ~/Anaconda3/envs/tensorflow

Windows 10.

, , , 3.6.

+23

env python . , ...

>deactivate tensorflow # start by deactivating the existing tensorflow env
>conda env remove -n tensorflow # remove the env

>conda create -n tensorflow python=3.5
>activate tensorflow
+2

(python ..) , cmd, git bash PowerShell.

https://github.com/tensorflow/tensorflow/issues/9264

0

Windows 10 python 3.6 anaconda ( anaconda ).

" " / . , tensorflow python 3.5 python.

shadoworflow :

activate tensorflow

tensorflow :

pip install tensorflow #or tensowrlow-gpu
0

, , . tensorflow Conda python 3.5.2 Conda-forge. :

  • conda create -n tensorflow python=3.5.2
  • activate tensorflow
  • conda config --add channels conda-forge
  • conda install tensorflow
0

64- Python 3.6.8:

https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe

, . , Tensorflow 32- Python, 64-.

0

Anaconda Anaconda,

  • conda create -n tensorflow
  • activate tensorflow

, :

  1. pip install tensorflow

That should work, good luck! If something is wrong, please let me know.

-2
source

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


All Articles