Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue Installing TensorFlow on Windows 11 with Python 3.12.0

I am facing an issue while trying to install TensorFlow on my Windows 11 machine with Python 3.12.0 and pip 23.2.1 (64-bit). Despite several attempts, I keep receiving the following error messages:


ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)

ERROR: No matching distribution found for tensorflow

I have tried creating virtual environments using both Python 3.7.0 and Python 3.6.4

cleared the pip cache using the command pip cache purge

Install TensorFlow with various specific versions

tensorflow==2.1.0

tensorflow==2.5.0

tensorflow==2.2.0rc4

I hoping anyone know what might be the issue here

like image 795
Krishna Avatar asked Jun 28 '26 08:06

Krishna


1 Answers

tensorflow currently support python 3.11 so try downgrading your python edition it should work and try to follow the instructions on tf website for tf installation using pip it contains detailed information, hope that helps!

like image 119
zephyr Avatar answered Jun 30 '26 12:06

zephyr