Machine Learning References and Code Examples
Install library in a existing Jupiter Notebook
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install YOUR_PACKAGE_NAME
Ref: https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/