Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions 01-docker-terraform/docker-sql/05-data-ingestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Let's create a Jupyter notebook to explore the data:
```bash
uv run jupyter notebook
```
> [!NOTE]
>If the port didn't detect automatically then write this command
> ```bash
>uv run jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you explain what it does?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the video, the port wasn't detected automatically, and that happened to me
When I searched i got this command to make it detect automatically by assigning these tags

Thats the ChatGPT explanation:

It tells Jupyter to accept connections from any computer on the network on port 8888, not to try opening a web browser on the host machine, and permits running it as the root user.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not here. in the text

>```

## The NYC Taxi Dataset

Expand Down Expand Up @@ -106,7 +111,10 @@ In the Jupyter notebook, we create code to:
### Install SQLAlchemy

```bash
## using terminal
uv add sqlalchemy psycopg2-binary
## using jupyter
!uv add sqlalchemy psycopg2-binary
```

### Create Database Connection
Expand Down