Skip to content

Commit

Permalink
Merge pull request #3188 from illtellyoulater/patch-1
Browse files Browse the repository at this point in the history
Update README.rst
  • Loading branch information
nateprewitt committed Mar 17, 2022
2 parents 32d033a + 833d934 commit ccd5d28
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,29 @@ For more information, see this `blog post <https://aws.amazon.com/blogs/develope

Getting Started
---------------
Assuming that you have Python and ``virtualenv`` installed, set up your environment and install the required dependencies like this or you can install the library using ``pip``:
Assuming that you have a supported version of Python installed, you can first
set up your environment with:

..code-block:: sh
$ python -m venv .venv
...
$ . .venv/bin/activate

Then, you can install boto3 from PyPI with:

.. code-block:: sh
$ python -m pip install boto3
or install from source with:

.. code-block:: sh
$ git clone https://github.com/boto/boto3.git
$ cd boto3
$ virtualenv venv
...
$ . venv/bin/activate
$ python -m pip install -r requirements.txt
$ python -m pip install -e .
.. code-block:: sh
$ python -m pip install boto3
Using Boto3
~~~~~~~~~~~~~~
Expand Down

0 comments on commit ccd5d28

Please sign in to comment.