Skip to content

Instantly share code, notes, and snippets.

@Jverma
Last active April 28, 2016 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jverma/a7344660933c8c3c1ab7 to your computer and use it in GitHub Desktop.
Save Jverma/a7344660933c8c3c1ab7 to your computer and use it in GitHub Desktop.
Conda environment for TensorFlow

Conda development environment for a project involving Google TensorFlow.

  • Setup the environment
conda env create
  • Activate the environment
source activate ENV_NAME
  • Install TensorFlow
conda install -c https://conda.anaconda.org/jjhelmus tensorflow
  • When done, deactivate the environment.
source deactivate
  • Remove the environment
conda remove --name ENV_NAME --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment