0

我尝试以多种方式安装tensorflow(python 3.5)但没有成功:

  1. 通过输入“pip install tensorflow”和“pip install tensorflow-gpu”并得到错误:
Could not find a version that satisfies the requirement tensorflow (from 
   versions: )
   No matching distribution found for tensorflow
  1. 通过命令:“pip install tensorflow-1.2.0rc0-cp35-cp35m-win_amd64”和几个 .whl 文件并得到错误:

    Could not find a version that satisfies the requirement tensorflow-
    1.2.0rc0-cp35-cp35m-win_amd64 (from versions: )
    No matching distribution found for tensorflow-1.2.0rc0-cp35-cp35m-
    win_amd64
    
  2. 我什至用过 conda 但它没有成功..

你能帮我安装张量流吗?谢谢

4

1 回答 1

0

您要在哪个操作系统上安装?在 conda 上尝试以下命令

conda install -c conda-forge tensorflow=1.0.0

如果收到错误: conda create --name tensorflow python=3.5 activate tensorflow pip install tensorflow

于 2017-05-18T20:06:36.403 回答