Reputation: 109
I have a problem that i can't install tensorflow 2.1.0 version using pip
every time i try , i have this message:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow
my machine specs: windows 10 , 64 bit , python 3.7 pip 20.1
Upvotes: 0
Views: 3272
Reputation: 1042
I got the problem resolved by upgrading the pip.
pip3 install --upgrade pip
Upvotes: 0
Reputation: 21
Yep this is an issue with that version of python, try using python 3.6, it solved the issue for me
Upvotes: 1