Last active
November 1, 2018 00:19
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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