0

this is my symptom:

[shankai@shankai ~]$ pip3 install tensorflow
Collecting tensorflow
  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow

my python : 3.7 64bit os : ArchLinux

kaikai_sk
  • 121
  • 1
  • 1
  • 10

2 Answers2

1

As listed at the pypi tensorflow page tensorflow is currently just available for Python 3.6, not for Python 3.7.

Either change your setup to Python 3.6 or build Tensorflow from source.

Simon K.
  • 56
  • 5
0

Try this (as suggested in this post):

python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl

You should always check the official documentation of any library, module or free software you start using. You could have found this solution by checking the official documentation.

Alejandro Lorefice
  • 797
  • 1
  • 5
  • 18