Install tensor flow on windows

I am trying to install shadoworflow on windows. I have python3 (3.5.2) and pip3 (9.0.1):

pip3 install --upgrade tensorflow

Collecting tensorflow

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

This question is also found here: tensorflow was not found in pip but none of the solutions worked for me. Any ideas?

+5
source share
7 answers

Try the following on the Python command line:

import platform
platform.architecture()[0]

It should display '64bit' Just having a x86 version of Python is not enough. I have the same problem. Thought I had a 64-bit installation, but it turned out to be 32-bit.

BTW. it also works great with the Conda Python 3.6 distribution. Indeed, use the distro from the Gohlke page, as pointed out by Guillaume Jacquenot.

+4

- Christoph Gohlke

pip install tensorflow‑1.0.1‑cp35‑cp35m‑win_amd64.whl Python 3.5 64

+3

, . Tensorflow 64- , 32-. , 64- :

set CONDA_FORCE_32BIT=
conda create --name name_of_your_created_environment python=3.5
activate name_of_your_created_environment
conda install -c conda-forge tensorflow

CONDA_FORCE_32BIT = 1 32- , CONDA_FORCE_32BIT = 64- .

+1
 pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl

python

0

3 : Python 3.5.x(64- ). pip pip install tenorflow == 2.0.0-alpha0

.

0

, :

, 32- :

Python 3.6 ( C:\Python36) . , Python "x64".

python

Import platform
platform.architecture()[0]

Python36 64- : https://www.python.org/ftp/python/3.6.2/python-3.6.2-amd64.exe

For more information, you can follow this link https://tensorflowwindows.quora.com/

-2
source

After several hours, I can solve the problem of installing TensorFlow on Windows. here is a summary of fooobar.com/questions/2409078 / ...

-2
source

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


All Articles