9

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

iwj145
  • 261
  • 1
  • 6
  • 16

2 Answers2

12

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.

ally-e
  • 1,515
  • 10
  • 13
  • 2
    NOTE for MAC OS: My Jupyter Notebook for Mac OS X 10.14.2 folders here used an underscore, so if the above command does not work, look here `~/USER/NAME/anaconda/lib/python2.7/site-packages/` for these: `jupyeter_client`, `jupyter_console`, and `jupyter_core`. If those are there simply run `conda remove jupyter jupyter_client jupyter_console jupyter_core` – amc Feb 18 '19 at 18:16
5

I had to use:

conda uninstall jupyter_core nbformat nbconvert notebook
Hrvoje
  • 13,566
  • 7
  • 90
  • 104