HackChart
1/14/2020 - 11:56 AM

Package Installation in Jupyter

A little extra boilerplate used for checking the compatibility between installations when installing with pip in Jupyter Notebooks.

# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install pandas
!{sys.executable} -m pip install matplotlib