Created
August 1, 2018 21:29
-
-
Save DiogoDantas/49b2ec7a62c891efbfa12e06f6130338 to your computer and use it in GitHub Desktop.
Manual Pratico de Deep Learning
This file contains 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
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 #################### create environment #################### | |
conda info | |
conda create -n mpdl 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 mpdl | |
jupyter notebook |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment