Sam
Sam

Reputation: 171

Tensorflow support for Python3.11

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

Answers (5)

Rizwan Rizwan
Rizwan Rizwan

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

day
day

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

Omer Siddiqui
Omer Siddiqui

Reputation: 39

tensorflow currently supports from python 3.7 - 3.10 4

Upvotes: 3

kotche
kotche

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

Dr. Snoopy
Dr. Snoopy

Reputation: 56357

Yes, you should downgrade python to < 3.11 until the wheels are updated to support python 3.11

Upvotes: 3

Related Questions