overview.rst 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .. _overview:
  2. Overview
  3. ========
  4. JupyterLab is a next-generation web-based user interface for Project Jupyter.
  5. .. image:: ../user/images/interface_jupyterlab.png
  6. :align: center
  7. :class: jp-screenshot
  8. JupyterLab enables you to work with documents and activities such as
  9. :ref:`Jupyter notebooks <notebook>`, text editors, terminals, and custom
  10. components in a flexible, integrated, and extensible manner. For a demonstration
  11. of JupyterLab and its features, you can view this video:
  12. .. raw:: html
  13. <div class="jp-youtube-video">
  14. <iframe src="https://www.youtube-nocookie.com/embed/A5YyoCKxEOU?rel=0&amp;showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
  15. </div>
  16. You can :ref:`arrange <interface>` multiple documents and activities side by side in the
  17. work area using tabs and splitters. Documents and activities integrate with each
  18. other, enabling new workflows for interactive computing, for example:
  19. - :ref:`code-console` provide transient scratchpads for running code
  20. interactively, with full support for rich output. A code console can be
  21. linked to a notebook kernel as a computation log from the notebook, for
  22. example.
  23. - :ref:`Kernel-backed documents <kernel-backed-documents>` enable code in any
  24. text file (Markdown, Python, R, LaTeX, etc.) to be run interactively in any
  25. Jupyter kernel.
  26. - Notebook cell outputs can be :ref:`mirrored into their own tab <cell-output-mirror>`,
  27. side by side with the notebook, enabling simple dashboards with interactive controls
  28. backed by a kernel.
  29. - Multiple views of documents with different editors or viewers enable live
  30. editing of documents reflected in other viewers. For example, it is easy to
  31. have live preview of :ref:`markdown`, :ref:`csv`, or :ref:`vega-lite` documents.
  32. JupyterLab also offers a unified model for viewing and handling data formats.
  33. JupyterLab understands many file formats (images, CSV, JSON, Markdown, PDF,
  34. Vega, Vega-Lite, etc.) and can also display rich kernel output in these formats.
  35. See :ref:`file-and-output-formats` for more information.
  36. To navigate the user interface, JupyterLab offers :ref:`customizable keyboard
  37. shortcuts <shortcuts>` and the ability to use :ref:`key maps <editor-keymaps>`
  38. from vim, emacs, and Sublime Text in the text editor.
  39. JupyterLab :ref:`extensions <user_extensions>` can customize or enhance any part
  40. of JupyterLab, including new themes, file editors, and custom components.
  41. JupyterLab is served from the same `server
  42. <https://jupyter-notebook.readthedocs.io/en/stable/>`__ and uses the same
  43. `notebook document format <https://nbformat.readthedocs.io/en/latest/>`__ as the
  44. classic Jupyter Notebook.
  45. .. _releases:
  46. JupyterLab Releases
  47. -------------------
  48. Since JupyterLab 0.32 (February 2018), the releases of JupyterLab are suitable
  49. for general daily use by both Jupyter novices and users experienced with the
  50. Classic Notebook interface. As of the 1.0 release (June 2019), it is
  51. additionally ready for extension writers who wish to further customize the
  52. JupyterLab experience for others. Please review the :ref:`changelog` for
  53. detailed descriptions of each release.
  54. The extension developer API is evolving, and we also are currently iterating on UI/UX improvements.
  55. We appreciate feedback on our `GitHub issues page <https://github.com/jupyterlab/jupyterlab/issues>`__
  56. as we evolve towards a stable extension development API.
  57. JupyterLab will eventually replace the classic Jupyter Notebook.
  58. Throughout this transition, the same notebook document format will be supported by both the classic Notebook and JupyterLab.