EN
TensorFlow / Windows - installation ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
1 answers
6 points
When I try to install TensorFlow under Windows 11, I get the following error:
xxxxxxxxxx
1
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
2
ERROR: No matching distribution found for tensorflow
The installation instruction that I use is from https://www.tensorflow.org/install.
Screensahot:
1 answer
5 points
It looks like you use Python version that is not supported by TensorFlow.
You should install correct version.
Current note from https://www.tensorflow.org/install:
TensorFlow is tested and supported on the following 64-bit systems:
|
Solution 1:
So you can run in the command line:
xxxxxxxxxx
1
"C:\Users\your_profile\AppData\Local\Programs\Python\Python310\Scripts\pip.exe" install tensorflow
Where: your_profile
should be changed to your profile directory.
Solution 2:
Change in your PATH
environment variable to correct Python version.

Then run in the command line:
xxxxxxxxxx
1
pip install tensorflow
0 commentsShow commentsAdd comment