Skip to content

Instantly share code, notes, and snippets.

@sethbunke
Last active November 1, 2018 00:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save sethbunke/8859264ecb9322dcf8a6053bc20822de to your computer and use it in GitHub Desktop.
Save sethbunke/8859264ecb9322dcf8a6053bc20822de to your computer and use it in GitHub Desktop.
Create a virtual environment using Anaconda and install various ML tools and TensorFlow
//Mac OS or Linux
conda create -n tensorflow python=3.5
source activate tensorflow
pip install widgetsnbextension
conda install pandas matplotlib jupyter notebook scipy scikit-learn
conda install -c conda-forge tensorflow
//Windows
conda create -n tensorflow python=3.5
activate tensorflow
pip install widgetsnbextension
conda install pandas matplotlib jupyter notebook scipy scikit-learn
conda install -c conda-forge tensorflow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment