pip: no matching distribution found for tensorflow

Viewed 10889

enter image description here Although I tried hard, I couldn't solve the problem. I can not give any other details because I do not know the reason. If you are curious about a detail, ask, let me answer it immediately.

3 Answers

Tensorflow only works on 64 bit systems, so you might want to upgrade your computer

If that's not the problem, try doing

pip install --upgrade pip

If you have an older version of python installed (v2) usually pip will refer to python 2.x Try

pip3 install tensorflow

If you are trying to install an older version of Tensorflow, you may be using a version of Python that's too new. I had this issue trying to install tensorflow-gpu==1.15 using Python 3.8.

You can check by looking at the files listed on PyPI, e.g.: https://pypi.org/project/tensorflow-gpu/1.15.5/#files

Then, try switching to a Python version that has an available wheel.

Related