Skip to content

Instantly share code, notes, and snippets.

@zenlambda
Last active April 29, 2017 16:46
Show Gist options
  • Save zenlambda/ff7bcf6cd269063f3e98bb4829de1915 to your computer and use it in GitHub Desktop.
Save zenlambda/ff7bcf6cd269063f3e98bb4829de1915 to your computer and use it in GitHub Desktop.

Revisions

  1. zenlambda revised this gist Apr 29, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@

    * Visual Studio Community 2015 (now available under [older versions](https://www.visualstudio.com/vs/older-downloads/))
    * [CUDA SDK 8.0](https://developer.nvidia.com/cuda-downloads)
    * [CUDNN](https://developer.nvidia.com/cudnn). Just extract this and put it on your path.
    * [CUDNN](https://developer.nvidia.com/cudnn) **v5.1 for CUDA 8.0**. Just extract this and put it on your path.
    * [Latest Anaconda with Python 3](https://www.continuum.io/downloads) (You can always install Python 2.7 as an environment.)

    ## Tensorflow Setup
  2. zenlambda revised this gist Apr 26, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@

    ## Prerequisites

    * Visual Studio Community 2015 (now available under [older version](https://www.visualstudio.com/vs/older-downloads/))
    * Visual Studio Community 2015 (now available under [older versions](https://www.visualstudio.com/vs/older-downloads/))
    * [CUDA SDK 8.0](https://developer.nvidia.com/cuda-downloads)
    * [CUDNN](https://developer.nvidia.com/cudnn). Just extract this and put it on your path.
    * [Latest Anaconda with Python 3](https://www.continuum.io/downloads) (You can always install Python 2.7 as an environment.)
  3. zenlambda revised this gist Apr 26, 2017. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -2,10 +2,10 @@

    ## Prerequisites

    * Visual Studio Community 2015
    * CUDA SDK
    * CUDNN
    * Latest Anaconda with python 3
    * Visual Studio Community 2015 (now available under [older version](https://www.visualstudio.com/vs/older-downloads/))
    * [CUDA SDK 8.0](https://developer.nvidia.com/cuda-downloads)
    * [CUDNN](https://developer.nvidia.com/cudnn). Just extract this and put it on your path.
    * [Latest Anaconda with Python 3](https://www.continuum.io/downloads) (You can always install Python 2.7 as an environment.)

    ## Tensorflow Setup

  4. zenlambda revised this gist Apr 26, 2017. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -11,10 +11,10 @@

    Open the Anaconda Shell:

    conda create -n tensorflow python=3.5 ipykernel
    # gpu version
    pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl
    ipython kernel install --name tensorflow
    conda create -n tensorflow python=3.5 ipykernel
    # gpu version
    pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl
    ipython kernel install --name tensorflow

    Open Jupyter Notebook, tensorflow should be a selectable environment.

  5. zenlambda revised this gist Apr 26, 2017. 1 changed file with 5 additions and 3 deletions.
    8 changes: 5 additions & 3 deletions TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -1,11 +1,13 @@
    # Prerequisites
    # Tensorflow On Windows

    ## Prerequisites

    * Visual Studio Community 2015
    * CUDA SDK
    * CUDNN
    * Latest Anaconda with python 3

    # Tensorflow Setup
    ## Tensorflow Setup

    Open the Anaconda Shell:

    @@ -14,6 +16,6 @@ Open the Anaconda Shell:
    pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl
    ipython kernel install --name tensorflow

    Open Jypter Notebook, tensorflow should be a selectable environment.
    Open Jupyter Notebook, tensorflow should be a selectable environment.

    Have fun!
  6. zenlambda created this gist Apr 26, 2017.
    19 changes: 19 additions & 0 deletions TensorFlowOnWindows.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    # Prerequisites

    * Visual Studio Community 2015
    * CUDA SDK
    * CUDNN
    * Latest Anaconda with python 3

    # Tensorflow Setup

    Open the Anaconda Shell:

    conda create -n tensorflow python=3.5 ipykernel
    # gpu version
    pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl
    ipython kernel install --name tensorflow

    Open Jypter Notebook, tensorflow should be a selectable environment.

    Have fun!