How to install tensorflow==2.3.0

31k Views Asked by At

I would like to test some function in the new tensorflow2.3 However, I am struggling with installation process.

I saw: How do I install the most recent Tensorflow (here: 2.2) on Windows when conda does not yet support it?

I executed: pip install --upgrade pip

I got:

ERROR: Could not find a version that satisfies the requirement tensorflow-cpu==2.3.0rc2 (from versions: 1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0)
ERROR: No matching distribution found for tensorflow-cpu==2.3.0rc2
3

There are 3 best solutions below

2
On BEST ANSWER

please make sure pip is pointing to pip3 because tensorflow requires python3

pip --version


pip3 install --upgrade tensorflow
0
On

For some cases, you need to upgrade your pip version

pip install --upgrade pip

then install tensorflow 2.3.0 version

0
On

I just ran into the same issue, but had to downgrade python from 3.9 to 3.8. Python 3.8 is the latest version that supports tensorflow 2.3.0