Skip to content

Commit

Permalink
Add mention to use relevant package managers to install extra depende…
Browse files Browse the repository at this point in the history
…ncies
  • Loading branch information
sultaniman committed May 7, 2024
1 parent cd0d2a7 commit e87b033
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/website/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install dlt using `pip`:
pip install -U dlt
```

Install dlt using pixi:
Install dlt using `pixi`:

```sh
pixi add dlt
Expand All @@ -36,12 +36,16 @@ Install dlt using `conda`:
conda install -c conda-forge dlt
```

The commands above installs (or upgrades) the library core, in the example below we use DuckDB as a destination so let's add a `duckdb` dependency:
The commands above installs (or upgrades) the library core, in the example below we
use DuckDB as a destination so let's add a `duckdb` dependency:

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

While the example uses `pip` for installation, users of other package managers
should adapt the command accordingly to install the `duckdb` package.

:::tip
Use a clean virtual environment for your experiments! Here are [detailed instructions](reference/installation).

Expand Down

0 comments on commit e87b033

Please sign in to comment.