From b9a669aed6fb715892aafef8ca9b26f71158c55a Mon Sep 17 00:00:00 2001 From: Rajesh P Date: Sat, 28 Dec 2024 00:51:41 +0530 Subject: [PATCH 1/5] Add JupyterLab documentation page - Introduced a new markdown file for JupyterLab. - Included basic usage instructions, commands for opening notebooks, creating new notebooks, running cells, and restarting the kernel. - Added a link for more information to the official JupyterLab documentation. --- pages/common/jupyterlab.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/common/jupyterlab.md diff --git a/pages/common/jupyterlab.md b/pages/common/jupyterlab.md new file mode 100644 index 00000000000000..9562741bf638cc --- /dev/null +++ b/pages/common/jupyterlab.md @@ -0,0 +1,37 @@ +## **JupyterLab** + +**Interactive development environment for Jupyter notebooks.** + +**Basic usage:** + +```bash +jupyter lab +``` + +**Open a specific notebook:** + +```bash +jupyter lab my_notebook.ipynb +``` + +**Start JupyterLab in a specific directory:** + +```bash +jupyter lab --notebook-dir my_project +``` + +**Create a new notebook:** + +1. Open JupyterLab. +2. Click on **File** -\> **New** -\> **Notebook**. + +**Run a cell:** + +1. Select the cell. +2. Press **Shift+Enter**. + +**Restart the kernel:** + +1. Click on **Kernel** -\> **Restart Kernel**. + +**More information:** [https://jupyterlab.readthedocs.io/en/stable/](https://www.google.com/url?sa=E&source=gmail&q=https://jupyterlab.readthedocs.io/en/stable/) From a4da491db6ba3cb04729ace9ab57c3dd2acc3fc3 Mon Sep 17 00:00:00 2001 From: Rajesh P Date: Sat, 28 Dec 2024 00:57:46 +0530 Subject: [PATCH 2/5] Update JupyterLab documentation formatting and links - Changed header formatting from bold to standard markdown for better readability. - Corrected arrow notation in instructions for consistency. - Updated the link to the official JupyterLab documentation for accuracy. --- pages/common/jupyterlab.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/jupyterlab.md b/pages/common/jupyterlab.md index 9562741bf638cc..0b191ae74c2fe1 100644 --- a/pages/common/jupyterlab.md +++ b/pages/common/jupyterlab.md @@ -1,4 +1,4 @@ -## **JupyterLab** +# JupyterLab **Interactive development environment for Jupyter notebooks.** @@ -23,7 +23,7 @@ jupyter lab --notebook-dir my_project **Create a new notebook:** 1. Open JupyterLab. -2. Click on **File** -\> **New** -\> **Notebook**. +2. Click on **File** -> **New** -> **Notebook**. **Run a cell:** @@ -32,6 +32,6 @@ jupyter lab --notebook-dir my_project **Restart the kernel:** -1. Click on **Kernel** -\> **Restart Kernel**. +1. Click on **Kernel** -> **Restart Kernel**. -**More information:** [https://jupyterlab.readthedocs.io/en/stable/](https://www.google.com/url?sa=E&source=gmail&q=https://jupyterlab.readthedocs.io/en/stable/) +**More information:** https://jupyterlab.readthedocs.io/en/stable/ From 9533743d0b7accf8cbcf676498b52c6b76681400 Mon Sep 17 00:00:00 2001 From: Rajesh P Date: Sat, 28 Dec 2024 01:16:07 +0530 Subject: [PATCH 3/5] Refactor JupyterLab documentation for clarity and consistency - Changed header formatting to standard markdown style. - Updated command examples for starting JupyterLab and opening notebooks. - Added debug mode command for JupyterLab. - Improved overall readability and structure of the documentation. --- pages/common/jupyterlab.md | 39 +++++++++++--------------------------- 1 file changed, 11 insertions(+), 28 deletions(-) diff --git a/pages/common/jupyterlab.md b/pages/common/jupyterlab.md index 0b191ae74c2fe1..c4c0a5ad5aaf21 100644 --- a/pages/common/jupyterlab.md +++ b/pages/common/jupyterlab.md @@ -1,37 +1,20 @@ -# JupyterLab +# jupyterlab -**Interactive development environment for Jupyter notebooks.** +> Interactive development environment for Jupyter notebooks. +> More information: . -**Basic usage:** +- Start JupyterLab: -```bash -jupyter lab -``` +`jupyter lab` -**Open a specific notebook:** +- Open a specific notebook: -```bash -jupyter lab my_notebook.ipynb -``` +`jupyter lab path/to/notebook.ipynb` -**Start JupyterLab in a specific directory:** +- Start JupyterLab in a specific directory: -```bash -jupyter lab --notebook-dir my_project -``` +`jupyter lab --notebook-dir path/to/directory` -**Create a new notebook:** +- Start JupyterLab in debug mode: -1. Open JupyterLab. -2. Click on **File** -> **New** -> **Notebook**. - -**Run a cell:** - -1. Select the cell. -2. Press **Shift+Enter**. - -**Restart the kernel:** - -1. Click on **Kernel** -> **Restart Kernel**. - -**More information:** https://jupyterlab.readthedocs.io/en/stable/ +`jupyter lab --debug` From 45097c4cfc4c6e21292e03c83049a127d536ecc0 Mon Sep 17 00:00:00 2001 From: Rajesh Pandhare <98046333+rajeshkanaka@users.noreply.github.com> Date: Sat, 28 Dec 2024 01:42:25 +0530 Subject: [PATCH 4/5] Update pages/common/jupyterlab.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/common/jupyterlab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/jupyterlab.md b/pages/common/jupyterlab.md index c4c0a5ad5aaf21..8a20da22fa04c8 100644 --- a/pages/common/jupyterlab.md +++ b/pages/common/jupyterlab.md @@ -1,4 +1,4 @@ -# jupyterlab +# jupyter lab > Interactive development environment for Jupyter notebooks. > More information: . From d4931066291e130243a0784f8794500b019f8576 Mon Sep 17 00:00:00 2001 From: Rajesh Pandhare <98046333+rajeshkanaka@users.noreply.github.com> Date: Sat, 28 Dec 2024 15:20:07 +0530 Subject: [PATCH 5/5] Update pages/common/jupyterlab.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/common/jupyterlab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/jupyterlab.md b/pages/common/jupyterlab.md index 8a20da22fa04c8..7ce9ded40a1916 100644 --- a/pages/common/jupyterlab.md +++ b/pages/common/jupyterlab.md @@ -9,11 +9,11 @@ - Open a specific notebook: -`jupyter lab path/to/notebook.ipynb` +`jupyter lab {{path/to/notebook.ipynb}}` - Start JupyterLab in a specific directory: -`jupyter lab --notebook-dir path/to/directory` +`jupyter lab --notebook-dir {{path/to/directory}}` - Start JupyterLab in debug mode: