1

I recently installed pycharm. I also use a different libraries when I code. I was able to install Numpy, Pandas, etc. But when I tried to install tensor flow, I got an error saying,

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

I have the latest pip(20.1.1) and latest pycharm version. I use python 3.8.1 which is not the latest. I don't know if it's the problem or not because it fits the requirements.

Lumito
  • 490
  • 6
  • 20
Ben
  • 47
  • 1
  • 6
  • Does this answer your question? [Error when installing Tensorflow - Python 3.8](https://stackoverflow.com/questions/59302043/error-when-installing-tensorflow-python-3-8) – Biranchi Jun 23 '20 at 00:00

3 Answers3

0

Try first using pip command. You will have more details of the fails.

pip install pandas

also check which python version are you using inside pycharm. I suggest you to configure a virtualenv.

Carlos Rojas
  • 334
  • 5
  • 13
  • I got this error "ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow" – Ben Jun 23 '20 at 15:49
0

Try this,

MacOS:

python -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl

Windows:

python -m pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow_cpu-2.2.0-cp38-cp38-win_amd64.whl
Biranchi
  • 16,120
  • 23
  • 124
  • 161
  • I got this error "ERROR: tensorflow_cpu-2.2.0-cp38-cp38-win_amd64.whl is not a supported wheel on this platform." – Ben Jun 23 '20 at 15:47
0

I had the same issue , it's because the latest version of Python matches with Tensorflow 2.x , and these versions are not supported by pip installation ( venv ) , you better install Anaconda and create a portable environnement that you can use on multiple projects , it'll be easier to install Tensorflow

conda install tensorflow 

Or you can use the Anaconda Navigator for a gui interface packages installation

Karam Mohamed
  • 843
  • 1
  • 7
  • 15