Installing tensorflow with anaconda in windows

前端 未结 20 2370
春和景丽
春和景丽 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

    • Install Anaconda for Python 3.5 - Can install from here for 64 bit windows

    • Then install TensorFlow from here

    (I tried previously with Anaconda for Python 3.6 but failed even after creating Conda env for Python3.5)

    Additionally if you want to run a Jupyter Notebook and use TensorFlow in it. Use following steps.

    Change to TensorFlow env:

    C: > activate tensorflow
    (tensorflow) C: > pip install jupyter notebook
    

    Once installed, you can launch Jupyter Notebook and test

    (tensorflow) C: > jupyter notebook
    

提交回复
热议问题