100 Days of Machine Learning Coding as proposed by Siraj Rava, That means coding and/or studying machine learning for at least an hour everyday for the next 100 days. I will do Inphograpichs inspired by Avik Jain, but my inovation will do the explanation and the Inphograpichs in portuguese language(my native language) because of the lack of good ML content in portuguese.
The Day 0 purpose is to have a ML and Data Science python environment
Install Conda https://conda.io/docs/installation.html
Cheatsheet https://conda.io/docs/_downloads/conda-cheatsheet.pdf
//OSX or Linux
conda create -n pyml python=3.5
source activate pyml
conda install pandas matplotlib jupyter notebook scipy scikit-learn nltk nb_conda
//optional for deep learning
conda install -c conda-forge tensorflow keras
pip install gym
//Windows
conda create -n pyml python=3.5
activate pyml
conda install pandas matplotlib jupyter notebook scipy scikit-learn nltk nb_conda
//optional for deep learning
conda install -c conda-forge tensorflow keras