#環境
Ubuntu 18.04
Python 3.7.0
#Tensorflowをインストールする
エラー文はこちら
Terminal
$ pip install tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
原因はTensorflowがPython3.7.0に対応していなかったこと。
対処法はPythonを3.6.6にダウングレードすることです。
$ conda install python=3.6.6
コマンドを実行後pip install tensorflow
でインストール出来ます。
お疲れ様でした。