starting.rst 1.0 KB

12345678910111213141516171819202122232425262728
  1. .. _starting:
  2. Starting JupyterLab
  3. -------------------
  4. Start JupyterLab using:
  5. .. code:: bash
  6. jupyter lab
  7. JupyterLab will open automatically in your browser. You may also access
  8. JupyterLab by entering the notebook server's URL (usually
  9. ``http://localhost:8888``) into the browser. You can also open the
  10. classic Notebook from JupyterLab by selecting "Launch Classic Notebook"
  11. from the JupyterLab Help menu.
  12. Because JupyterLab is a server extension of the classic Jupyter Notebook
  13. server, you can also use JupyterLab by starting the classic Jupyter
  14. Noteboook (``jupyter notebook``) and visiting the ``/lab`` URL (usually
  15. ``http://localhost:8888/lab``) rather than the default ``/tree`` URL.
  16. Conversely, to go to the classic Notebook from JupyterLab, you can
  17. change the URL from ``/lab`` to ``/tree``.
  18. JupyterLab has the same security model as the classic Jupyter Notebook;
  19. for more information see the `security
  20. section <https://jupyter-notebook.readthedocs.io/en/stable/security.html>`__
  21. of the classic Notebook's documentation.