From 67244aba8a12a81498f2420c6a8ff7075e0914f1 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Fri, 14 Mar 2025 14:37:22 -0500 Subject: [PATCH] Clarification about launching jupyter lab (#565) * Clarification about launching jupyter lab * fix juputer typo --- setup/01_optional-python-setup-preferences/README.md | 8 +++++++- setup/01_optional-python-setup-preferences/native-uv.md | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/setup/01_optional-python-setup-preferences/README.md b/setup/01_optional-python-setup-preferences/README.md index b03a5a4..705da40 100644 --- a/setup/01_optional-python-setup-preferences/README.md +++ b/setup/01_optional-python-setup-preferences/README.md @@ -199,9 +199,15 @@ If problems persist, consider [opening a discussion](https://github.com/rasbt/LL Once everything is set up, you can start working with the code files. For instance, launch [JupyterLab](https://jupyterlab.readthedocs.io/en/latest/) by running: ```bash -jupyterlab +jupyter lab ``` +  +> **Note:** +> If you encounter problems with the jupyter lab command, you can also start it using the full path inside your virtual environment. For example, use `.venv/bin/jupyter lab` on Linux/macOS or `.venv\Scripts\jupyter-lab` on Windows. + +  + Uv install   diff --git a/setup/01_optional-python-setup-preferences/native-uv.md b/setup/01_optional-python-setup-preferences/native-uv.md index 07eeed5..d841ffb 100644 --- a/setup/01_optional-python-setup-preferences/native-uv.md +++ b/setup/01_optional-python-setup-preferences/native-uv.md @@ -144,10 +144,14 @@ python script.py and launch JupyterLab via ```bash -juputer lab +jupyter lab ``` +  +> **Note:** +> If you encounter problems with the jupyter lab command, you can also start it using the full path inside your virtual environment. For example, use `.venv/bin/jupyter lab` on Linux/macOS or `.venv\Scripts\jupyter-lab` on Windows. +