Reputation: 65
So for ImageAI I need to install a version lower than tensorflow 2.0, so I'm trying to get 1.15.
When i try to use pip install tensorflow==1.15
it comes back with:
ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from versions: 2.2.0rc1, 2.2.0rc2) ERROR: No matching distribution found for tensorflow==1.15
I have no clue how I can fix this and haven't been able to find anything of the internet that could be of any help.
Thanks in advance and have a nice day, Rover
Upvotes: 5
Views: 5777
Reputation:
Providing the solution here (Answer Section), even though it is present in the Comment Section, for the benefit of the community.
User was trying to use python 3.8, which was not officially supported when tensorflow was at version 1.15. After installation of python 3.7, problem was resolved.
Please check on pypi, there are no files available for cp38 for 1.15, Only the versions listed by command have (i.e 2.2.0rc1, 2.2.0rc2) a cp38 whl file available here.
Upvotes: 4