From 5a63dc68dc40c371807eed9b0edaa773300572a7 Mon Sep 17 00:00:00 2001 From: Scott Stevenson Date: Wed, 25 Feb 2026 19:08:02 +0000 Subject: [PATCH] Remove unrelated package installation instructions I assume this was originally a copy paste error: the `awscli` package installed on the line below is needed to run the `aws configure` command, but the `aws` and `configure` PyPI packages are unrelated and unneeded. --- docs/tutorials/data_sources/load_from_s3_tutorial.ipynb | 1 - docs/tutorials/data_sources/load_from_s3_tutorial.md | 1 - 2 files changed, 2 deletions(-) diff --git a/docs/tutorials/data_sources/load_from_s3_tutorial.ipynb b/docs/tutorials/data_sources/load_from_s3_tutorial.ipynb index 955acb942..aede2ad2f 100644 --- a/docs/tutorials/data_sources/load_from_s3_tutorial.ipynb +++ b/docs/tutorials/data_sources/load_from_s3_tutorial.ipynb @@ -61,7 +61,6 @@ }, "outputs": [], "source": [ - "!pip install aws configure\n", "!pip install awscli" ] }, diff --git a/docs/tutorials/data_sources/load_from_s3_tutorial.md b/docs/tutorials/data_sources/load_from_s3_tutorial.md index faaa607e4..9036afcba 100644 --- a/docs/tutorials/data_sources/load_from_s3_tutorial.md +++ b/docs/tutorials/data_sources/load_from_s3_tutorial.md @@ -36,7 +36,6 @@ This document outlines how to read data from an Amazon S3 bucket and construct a ```python id="8fhEOwxcWlWf" -!pip install aws configure !pip install awscli ```