第一步:下载anaconda 最好是Anaconda3-4.2.0-Windows-x86_64(支持python3.5)而我刚开始下载是Anaconda3-4.3.1-Windows-x86_64(支持python3.6)结果在安装tensorflow中出现not a supported wheel on this platform.错误。因为官网上说了TensorFlow supports only 64-bit Python 3.5 on Windows. We have tested the pip packages with the following distributions of Python
第二步:安装anaconda,一步步进行就可
第三步:cpu版本
在win+R 输入cmd打开命令提示符
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.1.0-cp35-cp35m-win_amd64.whl
如果出现Cannot remove entries from nonexistent file e:\anaconda3\lib\site-packages\easy-install.pth11
输入 pip install --ignore-installed --upgrade pip setuptools 更新setuptools版本
再重新pip install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl 即可
最后一步 测试
在命令提示符下输入python,输入import tensorflow as tf
无报错则安装成功

本文提供了一种在Windows环境下使用Anaconda安装TensorFlow的具体步骤。首先推荐下载特定版本的Anaconda以确保与TensorFlow兼容,接着逐步指导如何安装,并解决安装过程中可能遇到的问题,如不支持的wheel文件等。
6万+

被折叠的 条评论
为什么被折叠?



