.Exeの開発記

遊戯王について書きます

Tensor Flow をpipでインストールできないときの対処方

スポンサーリンク

動作環境はwindows10.python3.6.2です.
機械学習をさせたかったのでTensor Flowをpipもしくはpip3でインストールしようとしましたが,
Collecting tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
と出てインストールできず.

結果的にこちらのページを参考にしたらインストールできました.
https://fabo.gitbooks.io/tensorflow-docs/end2end/package.htmltemcee.hatenablog.com

コマンドとしては
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
で筆者の場合は無事インストールが完了しました.