Skip to content

Commit

Permalink
Use bare pip in getting-started.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Sep 13, 2023
1 parent c056136 commit 3fa1170
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/website/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Let's get started!
Install dlt using `pip`:

```bash
pip3 install -U dlt
pip install -U dlt
```

Command above installs (or upgrades) library core, in example below we use `duckdb` as a destination so let's add it:

```bash
pip3 install "dlt[duckdb]"
pip install "dlt[duckdb]"
```

:::tip
Expand Down Expand Up @@ -65,7 +65,7 @@ print(load_info)
Save this python script with the name `quick_start_pipeline.py` and run the following command:

```bash
python3 quick_start_pipeline.py
python quick_start_pipeline.py
```

The output should look like:
Expand All @@ -85,7 +85,7 @@ dlt pipeline quick_start show
```
**quick_start** is the name of the pipeline from the script above. If you do not have Streamlit installed yet do:
```bash
pip3 install streamlit
pip install streamlit
```

Now you should see the **users** table:
Expand Down Expand Up @@ -235,7 +235,7 @@ print(load_info)

Have some fun and run this snippet [with progress bar enabled](walkthroughs/run-a-pipeline.md#2-see-the-progress-during-loading) (we like **enlighten** the best, **tqdm** works as well):
```bash
pip3 install enlighten
pip install enlighten
PROGRESS=enlighten python load_from_db.py
```

Expand Down Expand Up @@ -575,7 +575,7 @@ Just before load, the `weaviate_adapter` is used to tell `weaviate` destination
To run this example you need additional dependencies:

```shell
pip3 install PyPDF2 "dlt[weaviate]"
pip install PyPDF2 "dlt[weaviate]"
python pdf_to_weaviate.py
```

Expand Down

0 comments on commit 3fa1170

Please sign in to comment.