Skip to content

Commit

Permalink
Add documentation on using jupyverse (#16190)
Browse files Browse the repository at this point in the history
* Add documentation on using jupyverse

* Review

* Add conda install instructions

---------

Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
  • Loading branch information
davidbrochart and krassowski committed May 1, 2024
1 parent caa728b commit 9ac9069
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/source/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,38 @@ Usage with JupyterHub
Read the details on our :ref:`JupyterLab on JupyterHub documentation page <jupyterhub>`.


Usage with Jupyverse
--------------------

`Jupyverse <https://github.com/jupyter-server/jupyverse/>`__ is a next-generation Jupyter server based on
`FastAPI <https://fastapi.tiangolo.com/>`__. It can be used instead of
`jupyter-server <https://github.com/jupyter-server/jupyter_server/>`__, the Jupyter server installed by default with JupyterLab.
Note that ``jupyter-server`` extensions won't work with ``jupyverse`` (for which there might be equivalent plugins).

You can install ``jupyverse`` with ``pip``:

.. code:: bash
pip install jupyverse[auth, jupyterlab]
or with ``conda``:

.. code:: bash
conda install -c conda-forge jupyverse fps-auth fps-jupyterlab
or with ``mamba``:

.. code:: bash
mamba install -c conda-forge jupyverse fps-auth fps-jupyterlab
And run it with:

.. code:: bash
jupyverse
Supported browsers
------------------

Expand Down

0 comments on commit 9ac9069

Please sign in to comment.