Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/guide/migrationpy3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ To update the AWS SDK for Python

1. Uninstall the currently installed copies of Boto3 and Botocore::

$ python -m pip uninstall boto3 botocore
$ python3 -m pip uninstall boto3 botocore

2. Install the new version of Boto3. This will also install Botocore, which it requires::

Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Setup a virtual environment
Once you have a supported version of Python installed, you should set up
your workspace by creating a virtual environment and activate it::

$ python -m venv .venv
$ python3 -m venv .venv
...
$ source .venv/bin/activate

Expand Down