Bugs π / Jul 20 2018
Jupyter Runtime πβΎοΈ
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