I have installed Python 3.9.1 and also installed a lot of packages, like sklearn, selenium, etc., but I am failing to install tensorflow. When I type in pip install tensorflow
an error is thrown:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow
I read that I need to have the 64bit-Version of Python installed. I checked it using:
import sys
print(sys.maxsize > 2**32)
which returned True
, what means I am using the 64bit-Version. So why am I still getting this error?
And why do I get this error only with tensorflow?