anaconda & tesorflow & win10

ref:  https://www.tensorflow.org/install/install_windows

The Anaconda installation is community supported, not officially supported.

Take the following steps to install TensorFlow in an Anaconda environment:

  1. Follow the instructions on the Anaconda download site to download and install Anaconda.

  2. Create a conda environment named tensorflow by invoking the following command: 

    C:> conda create -n tensorflow python=3.5 
  3. Activate the conda environment by issuing the following command:

    C:> activate tensorflow
     (tensorflow)C:>  # Your prompt should change  
  4. Issue the appropriate command to install TensorFlow inside your conda environment. To install the CPU-only version of TensorFlow, enter the following command: 

    (tensorflow)C:> pip install --ignore-installed --upgrade tensorflow 

     To install the GPU version of TensorFlow, enter the following command (on a single line):

    (tensorflow)C:> pip install --ignore-installed --upgrade tensorflow-gpu

posted @ 2017-11-18 02:31  carol_wei  阅读(158)  评论(0编辑  收藏  举报