我试图用Win10中的python2.7在anaconda中安装tensorflow,通过conda安装:
conda install -c conda-forge tensorflow=1.1.0然后,我得到了错误消息:
- python 2.7*
- tensorflow 1.1.0* -> python 3.5*
Use 'conda info <package>' to see the dependencies for each package.这个消息是否意味着我需要使用python3.5?
发布于 2017-06-19 19:03:40
TensorFlow只支持Windows3.5.x版本的Python。注意,Python3.5.x附带了pip3包管理器,这是安装TensorFlow的程序。
页面上有关于在Win10上使用Anaconda安装TF的说明。
https://stackoverflow.com/questions/44635364
复制相似问题