From 3fa117011675bdcb9c89eedc97dc5524991d8aeb Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Wed, 13 Sep 2023 12:43:37 +0300 Subject: [PATCH] Use bare pip in getting-started.mdx --- docs/website/docs/getting-started.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/website/docs/getting-started.mdx b/docs/website/docs/getting-started.mdx index 5afa0fb0da..f75fb2e5b2 100644 --- a/docs/website/docs/getting-started.mdx +++ b/docs/website/docs/getting-started.mdx @@ -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 @@ -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: @@ -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: @@ -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 ``` @@ -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 ```