Mirza Munib Baig
Mirza Munib Baig

Reputation: 311

Error while installing tensorflow from pip

i installed python and then installed anaconda. when i tried to install tensorflow from pip command i am getting this error. anyone know the reason?

Microsoft Windows [Version 10.0.16299.98]
(c) 2017 Microsoft Corporation. All rights reserved.

C:\Windows\system32>pip install tensorflow.
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow.

C:\Windows\system32>

Upvotes: 0

Views: 509

Answers (1)

Sam Carpenter
Sam Carpenter

Reputation: 427

The installation instructions for TensorFlow are located here. You'll see that there are a few more steps than just using pip. Long story short, once you're set up in a new environment use pip install --upgrade tensorflow

That being said, you may want to use Anaconda to install it rather than pip. Anaconda is generally better as a package manager, and whenever you can you should be using Anaconda.

Upvotes: 1

Related Questions