Install tensorflow on Windows with anaconda

后端 未结 7 1613
夕颜
夕颜 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:39

    Tensorflow installation using Conda:

    1. Install Anaconda3-4.2.0 X64 (I ran into issue with latest release 4.3.0)
    2. Upgrade conda version 4.2.9-->4.2.11 (again, ran into some issues with conda 4.2.9)

      conda install conda=4.2.11

    3. create environment

      conda create -n tf python=3.5

    4. activate tf

    5. conda install -c conda-forge tensorflow

提交回复
热议问题