Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between JupyterLab and JupyterHub?

What is the difference between JupyterLab and JupyterHub? How should I decide which one to deploy for users?

like image 904
Son Avatar asked Jul 17 '19 02:07

Son


1 Answers

JupyterHub is encapsulated environments for multiple users.

JupyterLab is a new version (for the lack of better words) of Jupyter Notebook. It is notebook, text editor and python console together with a file explorer.

Jupyter Notebook plugins may not work with JupyterLab (which is currently beta now).

If you want to use Jupyter Notebook, just use Jupyter Notebook.

If you want multiple users to juse their own Jupyter Notebooks encapsulated in the same machine, Jupyter Hub.

If you want to play with beta software, Jupyter Lab.

like image 200
Edward Aung Avatar answered Oct 13 '22 00:10

Edward Aung