Machine Learning References and Code Examples
June 2, 2024 • 1 min read • Gerardo Perrucci
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_NAMERef: https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/
