Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

560
Views
Python: How to properly set up boto3 and connect to AWS S3?

I walked through the following:

http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html https://boto3.readthedocs.io/en/latest/guide/quickstart.html#installation

And came up with the file (pract.py) using an IDE:

import boto3

# Let's use Amazon S3
s3 = boto3.resource('s3')

for bucket in s3.buckets.all():
    print(bucket.name)

And ran it but came across the following error even though I installed the boto3:

ImportError: No module named boto3

How can I confirm everything has been installed and configured correctly? What could be the issue?

Thank you in advance and will be sure to accept/upvote answer

WHEN I DO pip install boto3

enter image description here

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Did you install via pip? Run the command

pip list

See if the list that is output contains boto3, otherwise, you can follow these instructions:

How to manually install a pypi module without pip/easy_install?

to install boto3 from the zip file downloaded from this link:

https://github.com/boto/boto3

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!