ImportError No module named boto3

0 votes

Hi Guys,

I am getting this below error, when I tried to import boto3 module in my python code.

>>> import boto3
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named boto3
Apr 28, 2020 in AWS by akhtar
• 38,240 points
24,548 views

1 answer to this question.

0 votes

Hi@akhtar,

I think boto3 module is missing from your system. Use this below given command to install boto3.

$ python -m pip install --user boto3

Hope this will help you.

answered Apr 28, 2020 by MD
• 95,440 points

Related Questions In AWS

0 votes
1 answer
+1 vote
1 answer

'No module named 'requests'' on the AWS Python Lambda function?

Hi@akhtar, For a detailed, You can even check ...READ MORE

answered Apr 15, 2020 in AWS by MD
• 95,440 points
16,413 views
+1 vote
1 answer

Unable to import module 'lambda_function': No module named lambda_function

Hi@akhtar, This error appears when you haven’t named ...READ MORE

answered Apr 28, 2020 in AWS by MD
• 95,440 points
49,803 views
0 votes
2 answers