首页 文章

python tensorflow将无法安装

提问于
浏览
0

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

  • 输入"pip install tensorflow"和"pip install tensorflow-gpu"并收到错误:

找不到满足需求张量流的版本(来自
版本:)
找不到tensorflow的匹配分布

  • 通过命令:“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
  • 我甚至使用conda但它没有成功..

你能帮我安装tensorflow吗?谢谢

1 回答

  • 0

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

    conda install -c conda-forge tensorflow=1.0.0
    

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

相关问题