Jupyter Runtime πŸ–βšΎοΈ

Trying to install packages in a Jupyter runtime locks up the browser. I assume he can't handle the output streaming.

!pip install cufflinks sklearn scipy

A temporary workaround is to redirect the output to /dev/null.

!pip install cufflinks sklearn scipy &> /dev/null