完全卸载jupyter

使用pip(3) uninstall jupyter的方式无法卸载完全,使用pip-autoremove包也如此,因而只能采用以下方式:

1
2
3
4
5
6
7
8
pip3 uninstall -y jupyter
pip3 uninstall -y jupyter_core
pip3 uninstall -y jupyter-client
pip3 uninstall -y jupyter-console
pip3 uninstall -y notebook
pip3 uninstall -y qtconsole
pip3 uninstall -y nbconvert
pip3 uninstall -y nbformat