user5488652
user5488652

Reputation: 461

Pycharm : import Boto 3

I followed the steps on this installation guide : https://boto3.readthedocs.org/en/latest/guide/quickstart.html#guide-quickstart

After I did all the steps I still can't import boto3 in my Pycharm python file. I'm using python 3.4.3.

Upvotes: 8

Views: 22135

Answers (3)

Try following command in the terminal

pip install boto3

Upvotes: -2

Lakshya Srivastava
Lakshya Srivastava

Reputation: 709

In Pycharm

  • Press Ctr + Alt + s
  • On left, Project <your project here> > Project Interpreter
  • On right, click on +
  • At the top, search for boto3
  • At the bottom, click on Install Package

Upvotes: 18

Mo Battah
Mo Battah

Reputation: 31

You need to add the Boto3 package to PyCharm.

This answer provides a visual reference. ImportError: No module named 'bottle' - PyCharm

Upvotes: 2

Related Questions