starting.rst 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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-ui>`. The default workspace is the main ``/lab`` URL:
  11. .. code-block:: none
  12. http(s)://<server:port>/<lab-location>/lab
  13. Like the classic notebook,
  14. JupyterLab provides a way for users to copy URLs that
  15. :ref:`open a specific notebook or file <url-tree>`. Additionally,
  16. JupyterLab URLs are an advanced part of the user interface that allows for
  17. managing :ref:`workspaces <url-workspaces-ui>`. To learn more about URLs in
  18. Jupyterlab, visit :ref:`urls`.
  19. To open the classic Notebook from JupyterLab, select "Launch Classic Notebook"
  20. from the JupyterLab Help menu, or you can change the URL
  21. from ``/lab`` to ``/tree``.
  22. JupyterLab runs on top of Jupyter Server, so see the `security
  23. section <https://jupyter-server.readthedocs.io/en/latest/operators/security.html>`__
  24. of Jupyter Server's documentation for security-related information.