Reputation: 400
I am working with python3.7 and trying to download Tensor flow library but it gives me following error
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow
I am using pip installation as:
pip install tensorflow
I have tried many methods but I always gets the same error.
Upvotes: 2
Views: 187
Reputation: 103
Try conda install if you are using Anaconda. Go to your anaconda prompt by searching same in windows search. After Opening Anaconda prompt, try this command conda install -c conda-forge tensorflow
Hope error wont come now.
Upvotes: 1
Reputation: 366
Confirm that you are using the 64bit version of python as this is a requirement for tensorflow:
Check your python with:
python-32 -c 'import sys;print("%x" % sys.maxsize, sys.maxsize > 2**32)'
('7fffffff', False)
python-64 -c 'import sys;print("%x" % sys.maxsize, sys.maxsize > 2**32)'
('7fffffffffffffff', True)
Upvotes: 1