How to Install Boto 3 with Python on Windows 10 (AWS)

This article has not been completed yet. However, it may already contain helpful information and therefore it has been published at this stage.



Introduction

Table of Content:

  1. Introduction
  2. Prerequisites
  3. <Text>
  4. Conclusion


Prerequisites

Download Python
The official home of the Python Programming Language
python

To Exit press CTRL + Z and then Return.

pip --version
pip install boto3
python.exe -m pip install --upgrade pip
>>> import boto3
>>> s3 = boto3.resource('s3')
>>> for bucket in s3.buckets.all():
        print(bucket.name)
exit()


Conclusion

Sources:

boto3
The AWS SDK for Python