Installing tensorflow with anaconda in windows

前端 未结 20 2246
春和景丽
春和景丽 2020-12-08 02:15

I have installed Anaconda on Windows 64 bit. I have downloaded PyCharm for creating a project and in the terminal of PyCharm I have installed numpy, scipy

20条回答
  •  有刺的猬
    2020-12-08 03:10

    I found a more recent blog post in Anaconda which instructs how to install the TF easily. I used:

    conda create -n tensorflow_env tensorflow
    

    Or for the GPU version (Make sure that you have NVIDIA GPU)

    conda create -n tensorflow_gpuenv tensorflow-gpu
    

    This way you will have different environments for different TFs.

提交回复
热议问题