I am currently working with anaconda on a project using python 3.11.4. I wish to install tensorflow using the command
conda install tensorflow
But when doing so I get the following message :
UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment: Specifications: tensorflow -> python[version='3.10.|3.9.|3.8.|3.7.|3.6.|3.5.'] Your python: python=3.11
This message is very clear : I can not install tensorflow because I have a non-supported version of python. However, and this is my problem, tensorflow is supposed to work with python 3.11, as detailed here : https://www.tensorflow.org/install
And, to add complexity, I'm french so using a french version of tensorflow, which DOES NOT support python 3.11 (details : https://www.tensorflow.org/install?hl=fr)
So my question is : (i) why tensorflow does not support the same version of python in english and in french ? (ii) How to overcome this problem and installing the "english" version (or installing a compatible version) ?
Do you guys have any idea or explanation about this problem ?
I tried several searches and couldn't find anything comparable to my trouble.
EDIT : I'm using windows 11, conda version : 23.7.2
EDIT : Based on the comments and answers, the best solution for my problem is to install tensorflow using pip :
pip install tensorflow
Thanks ! Pierre