Skip to content

Commit

Permalink
Add venv callout from README into quickstart guide
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Feb 13, 2025
1 parent dbc7597 commit e38ae31
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docs/source/guide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,22 @@ Python. For details, including the deprecation schedule and how to update your
project to use Python 3.8, see :ref:`guide_migration_py3`.

For information about how to get the latest version of Python, see the official `Python
documentation <https://www.python.org/downloads/>`_.
documentation <https://www.python.org/downloads/>`_.

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
...
$ source .venv/bin/activate

This provides a isolated space for your installation that will avoid unexpected
interactions with other packages installed at the system level. Skipping this step
may result in unexpected dependency conflicts or failures with other tools installed
on your system.

Install Boto3
~~~~~~~~~~~~~
Expand Down

0 comments on commit e38ae31

Please sign in to comment.