This question already has answers here:
TensorFlow not found using pip (61 answers)
Closed7 years ago.
this is my symptom:
[shankai@shankai ~]$ pip3 install tensorflowCollecting tensorflow Could not find a version that satisfies the requirement tensorflow (from versions: )No matching distribution found for tensorflowmy python : 3.7 64bitos : ArchLinux
2 Answers2
As listedat 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.
Sign up to request clarification or add additional context in comments.
Comments
Try this (as suggested inthis post):
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whlYou should always check the official documentation of any library, module or free software you start using. You could have found this solution by checkingthe official documentation.
Comments
Explore related questions
See similar questions with these tags.

