TensorFlow on Windows: “pip install tensorflow” fails

Deadly 提交于 2019-11-28 14:49:19

According to your Python version string, you are running the 32-bit version of the Python interpreter. We have only made PIP packages for the 64-bit version of the Python 3.5, which can be downloaded and installed separately from Python.org or Anaconda.

Pip does not come with a tensorflow package. You need to add it. You can follow the tensorflow windows install directions.

https://www.tensorflow.org/versions/r0.12/get_started/os_setup.html#pip-installation-on-windows

For the cpu.

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl

For the gpu.

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!