Installation of Tensorflow by Pip

Asked

Viewed 26 times

0

When trying to install tensorflow by Pip always gives error, version indepentendete python, Pip or tensorflow.

When trying the command via cmd: Pip install tensorflow

The answer is: ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: None) ERROR: No matching Distribution found for tensorflow

  • 1

    what output if you type python -c "import sys; print(sys.version) ?

  • Before installing Tensorflow enter this Link and read the information.

1 answer

1

Tensorflow only works with 64bit Python between versions 3.5 and 3.8.

You can check the version of your python in the terminal by typing python -c "import sys; print(sys.version)

If your system meets the above conditions, make sure you have the updated Pip: py -m pip install --upgrade pip

You can try to install the package with direct link to your python version by following this list

Detailed instructions for installing tensorflow with Pip are here

Browser other questions tagged

You are not signed in. Login or sign up in order to post.