Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall Jupyter notebook installed from Anaconda?

I followed the following instructions to install the Jupyter notebook (Single user mode).

However, I actually need to install the multi user (Jupyter-hub) application.

How do I uninstall this application?

FYI - Using Centos 6.8

Thanks

like image 556
iwj145 Avatar asked Apr 10 '17 15:04

iwj145


2 Answers

You can remove Jupyter Notebook by running:

conda remove jupyter jupyter-client jupyter-console jupyter-core

You can install Jupyterhub by running:

conda install -c conda-forge jupyterhub 

I believe that this package is only compatible with Python 3.

like image 108
ally-e Avatar answered Nov 15 '22 04:11

ally-e


I had to use:

conda uninstall jupyter_core nbformat nbconvert notebook
like image 35
Hrvoje Avatar answered Nov 15 '22 03:11

Hrvoje