-1

What is differents between Jupyterhub and simple Jupyter?

I want you describe in more detail

MrTshoot
  • 95
  • 7
  • 1
    Does this answer your question? [What is the difference between Jupyter Notebook and JupyterLab?](https://stackoverflow.com/questions/50982686/what-is-the-difference-between-jupyter-notebook-and-jupyterlab) – L0tad May 09 '23 at 22:51
  • @L0tad I didn't see JupyterHub mentioned on what you suggest? JupyterHub is covered in a section with that subheading at the bottom of [A Short Guide to Navigating the Jupyter Ecosystem: a no-nonsense overview of the Jupyter ecosystem, and a few tips, tricks and concepts you may find useful for navigating it](https://www.kdnuggets.com/2017/03/guide-navigating-jupyter-ecosystem.html). Basically JupyterHub allows multiple users to have their own Jupyter Notebook or JupyterLab sessions served to them from a single machine. Example: [The Littlest JupyterHub](https://tljh.jupyter.org/en/latest/). – Wayne May 10 '23 at 02:32
  • Oops, I misread JupyterHub in the question as JupyterLab. My mistake. – L0tad May 10 '23 at 04:37
  • no. you sent me link about jupyterlab and jupyter notebook. I want to know about jupyterhub and simple jupyter – MrTshoot May 10 '23 at 05:18
  • Right, as I said, I misread your question. For starters though, have you read the documentation for [Jupyter Notebook](https://jupyter-notebook.readthedocs.io/en/stable/notebook.html) and [JupyterHub](https://jupyter.org/hub) (specifically, the ["What is JupyterHub?"](https://jupyter.org/hub#what-is-jupyterhub) section)? – L0tad May 10 '23 at 17:26

1 Answers1

0

By "simple Jupyter", I assume you mean a local installation/environment in which you are running Jupyter Notebook. JupyterHub is simply "a multi-user version of the notebook designed for companies, classrooms and research labs"—essentially just a piece of server-side infrastructure provided by the Jupyter project to help deploy a Jupyter environment for easy connection and use by multiple distributed clients.

Once connected, up and running, the interface and user experience is quite similar, except with JupyterHub it is running on a server somewhere that you usually connect to by pointing your browser to an external URL, instead of localhost or a specific address/port like you would use for a local Jupyter Notebook.

L0tad
  • 574
  • 3
  • 15