starting.rst 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. _starting:
  2. Starting JupyterLab
  3. -------------------
  4. Start JupyterLab using:
  5. .. code:: bash
  6. jupyter lab
  7. JupyterLab will open automatically in your browser.
  8. You may access JupyterLab by entering the notebook server's :ref:`URL <urls>`
  9. into the browser. JupyterLab sessions always reside in a
  10. :ref:`workspace <url-workspaces>`. The default workspace is the main ``/lab`` URL:
  11. .. code-block:: none
  12. http(s)://<server:port>/<lab-location>/lab
  13. Because JupyterLab is a server extension of the classic Jupyter Notebook
  14. server, you can launch JupyterLab by calling ``jupyter notebook``
  15. and visiting the ``/lab`` URL.
  16. Like the classic notebook,
  17. JupyterLab provides a way for users to copy URLs that
  18. :ref:`open a specific notebook or file <url-tree>`. Additionally,
  19. JupyterLab URLs are an advanced part of the user interface that allows for
  20. managing :ref:`workspaces <url-workspaces>`. To learn more about URLs in
  21. Jupyterlab, visit :ref:`urls`.
  22. To open the classic Notebook from JupyterLab, select "Launch Classic Notebook"
  23. from the JupyterLab Help menu, or you can change the URL
  24. from ``/lab`` to ``/tree``.
  25. JupyterLab has the same security model as the classic Jupyter Notebook;
  26. for more information see the `security
  27. section <https://jupyter-notebook.readthedocs.io/en/stable/security.html>`__
  28. of the classic Notebook's documentation.