Skip to content

Instantly share code, notes, and snippets.

@arnaldog12
Forked from DiogoDantas/environment.sh
Last active August 2, 2018 17:32
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 arnaldog12/7a06fbb95ba5be39d72ca06eb68f2124 to your computer and use it in GitHub Desktop.
Save arnaldog12/7a06fbb95ba5be39d72ca06eb68f2124 to your computer and use it in GitHub Desktop.
Manual Pratico de Deep Learning
echo "#################### create environment ####################"
conda create -n bootcamp python=3.6.5 numpy=1.14.3 pandas=0.23.0 matplotlib=2.2.2 scikit-learn=0.19.1 jupyter=1.0.0
source activate bootcamp
jupyter nbextension enable --py widgetsnbextension --sys-prefix
jupyter notebook
echo "#################### install miniconda ####################"
wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh
sudo chmod +x Miniconda3-4.5.4-Linux-x86_64.sh
./Miniconda3-4.5.4-Linux-x86_64.sh
echo "#################### cloning repository ####################"
git clone https://github.com/arnaldog12/Manual-Pratico-Deep-Learning.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment