Skip to content

Commit

Permalink
fix installation command" (#1741)
Browse files Browse the repository at this point in the history
  • Loading branch information
novica authored and willi-mueller committed Sep 2, 2024
1 parent c4c9195 commit 80e1313
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/postgres_to_postgres/postgres_to_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
Install `dlt` with `duckdb` as extra, also `connectorx`, Postgres adapter and progress bar tool:
```sh
pip install dlt[duckdb] connectorx pyarrow psycopg2-binary alive-progress
pip install "dlt[duckdb]" connectorx pyarrow psycopg2-binary alive-progress
```
Run the example:
Expand Down
2 changes: 1 addition & 1 deletion docs/website/blog/2024-01-10-dlt-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ With the model we just created, called Products, a chart can be instantly create
In this demo, we’ll forego the authentication issues of connecting to a data warehouse, and choose the DuckDB destination to show how the Python environment within Mode can be used to initialize a data pipeline and dump normalized data into a destination. In order to see how it works, we first install dlt[duckdb] into the Python environment.

```sh
!pip install dlt[duckdb]
!pip install "dlt[duckdb]"
```

Next, we initialize the dlt pipeline:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We'll use the [GitHub API](https://docs.github.com/en/rest) to fetch the events
1. Install dlt with duckdb support:

```sh
pip install dlt[duckdb]
pip install "dlt[duckdb]"
```

2. Create a new a new file `github_events_dispatch.py` and paste the following code:
Expand Down

0 comments on commit 80e1313

Please sign in to comment.