6

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
Mohan Radhakrishnan
  • 3,002
  • 5
  • 28
  • 42
MichalSzczep
  • 345
  • 1
  • 4
  • 15

3 Answers3

8

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

pip --version


pip3 install --upgrade tensorflow
AWS PS
  • 4,420
  • 1
  • 9
  • 22
1

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

Saaru Lindestøkke
  • 2,067
  • 1
  • 25
  • 51
0

For some cases, you need to upgrade your pip version

pip install --upgrade pip

then install tensorflow 2.3.0 version

Geancarlo Murillo
  • 509
  • 1
  • 5
  • 14