Fundamentals of machine learning
Make sure you have Python 3.x installed.
$ git clone https://github.com/taylorletsoaka/scikit-learn.git
$ pip3 install virtualenv
$ virtualenv venv # create a virtual environment named venv
Activate your virtual environment
$ source venv/bin/activate # unix
$ venv\Scripts\activate # Windows
$ source venv\Scripts\activate # Windows if you have git bash installed
$ pip3 install jupyter
$ pip3 install pandas matplotlib numpy scipy scikit-learn
If everything went well you should be able to fire up your notebook with the following command
$ jupyter notebook