简体   繁体   中英

couldn't find tensorflow version

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.

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)

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM