Install tensorflow on Windows with anaconda

后端 未结 7 1667
夕颜
夕颜 2021-01-11 19:50

I am trying to install Tensorflow on my Windows PC. Since I have already install and used Anaconda on Python (3.5), I have followed the instructions https://www.tensorflow.o

7条回答
  •  遥遥无期
    2021-01-11 20:47

    UPDATE: Since TensorFlow 0.12, we have published packages for Windows. You can install the CPU-only version with the following command:

    C:\> pip install tensorflow
    

    …and the GPU-accelerated version with:

    C:\> pip install tensorflow-gpu
    

    Note that you will need the 64-bit version of Python 3.5 installed for the above commands to work.


    TensorFlow is not currently supported on Windows, and none of the official binary packages work on Windows. We are currently working on adding support for Windows, but this effort is in the early stages.

    See the answers to this question for suggestions on how to run TensorFlow using Docker or Bash for Windows.

提交回复
热议问题