Reputation: 171
I have Python3.11.0 on a Windows10 PC. Trying to install tensorflow using:
pip install tensorflow
gives error. Upon visiting the tensorflow site I realised that it supports only 3.7 - 3.10 Should I downgrade the python version or is any workaround available?
Upvotes: 11
Views: 53137
Reputation: 1
python3.10 only works with tensorflow, don't use 3.11 or 3.12 python version, it doesn't support on Windows 11 64bit
Upvotes: 0
Reputation: 301
Tensorflow 2.12 has been released with python 3.11 support, so you can now consolidate your python installations and package setups
Upvotes: 6
Reputation: 29
Yes, you could create a conda environment using python 3.10 to use tensorflow. Here's a link with instructions to follow : https://www.tensorflow.org/install/pip#macos
Upvotes: 1
Reputation: 56357
Yes, you should downgrade python to < 3.11 until the wheels are updated to support python 3.11
Upvotes: 3