Clarification about launching jupyter lab (#565)

* Clarification about launching jupyter lab

* fix juputer typo
This commit is contained in:
Sebastian Raschka
2025-03-14 14:37:22 -05:00
committed by GitHub
parent 2f41429cf4
commit 8d01d3b0c1
2 changed files with 12 additions and 2 deletions

View File

@@ -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.
 
<img src="https://sebastianraschka.com/images/LLMs-from-scratch-images/setup/uv-setup/jupyter.png" width="900" height="auto" alt="Uv install">
&nbsp;

View File

@@ -144,10 +144,14 @@ python script.py
and launch JupyterLab via
```bash
juputer lab
jupyter lab
```
&nbsp;
> **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.
&nbsp;
&nbsp;