TensorFlowが利用できるまでの設定手順をまとめる。
まず基本となるインストラクションはこちらにある。
https://www.tensorflow.org/install/pip
このインストラクションによればインストールはpip経由であるがその前にVisual Studio 15のredistributable fileをインストールする必要がある。
この後にpip install tensorflowをしたところエラーが出る。
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
確認したところpython 3.7ではtensorflowが利用できないことが分かった。
対応方法としてはpythonを3.6にダウングレードする。
conda install python=3.6.6