LoginSignup
16
10

More than 5 years have passed since last update.

Tensorflowがインストール出来ない症状を解決する方法(Python 3.7.0)

Posted at

環境

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でインストール出来ます。

お疲れ様でした。

16
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
10