Skip to content
Advertisement

How do I install TensorFlow? [closed]

I have tried to install TensorFlow using pip install tensorflow but command prompt threw an error saying

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)

ERROR: No matching distribution found for tensorflow

Advertisement

Answer

Please make sure that the version of Python and the version of Tensorflow are not in conflict. Check this first!

>>> python3 --version

Make sure it is not the latest one(like 3.10). It takes time for Other libraries to support the latest versions.

Then go to TensorFlow PIP history page and look for the compatible version.

Preferably use Anaconda for package management and install any big Frameworks/libraries in virtual environments

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement