Could Not Find A Version That Satisfies The Requirement Tensorflow==1.15 Even Though I Think I Meet Them?
I am following a tutorial and I used pip install tensorflow for that. Now I realize that things changed over the years and things got named differently because I am getting the err
Solution 1:
I guess you are trying to use python 3.8
which was not officially supported when tensorflow was at version 1.15
.
You can choose python version between 3.5
to 3.7
or 2.7
, your issue can be resolved.
You can also check download files on pypi, there are no files available for cp38 for tensorflow 1.15
.
Note: You need a 64-bit version of Python, in case if are using a 32-bit version.
Post a Comment for "Could Not Find A Version That Satisfies The Requirement Tensorflow==1.15 Even Though I Think I Meet Them?"