7

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.

garnaat
  • 44,310
  • 7
  • 123
  • 103
user5488652
  • 421
  • 3
  • 8
  • 15
  • Can you show us the error you are getting when you try to import boto3? – garnaat Nov 20 '15 at 13:54
  • are you using correct python interpreter in your pycharm? you might want to refer to this post: http://stackoverflow.com/questions/33776857/suddenly-i-cant-import-pygame-when-using-pycharm5/33778616#33778616 – Nhor Nov 20 '15 at 14:03

3 Answers3

14

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
Manohar Reddy Poreddy
  • 25,399
  • 9
  • 157
  • 140
2

You need to add the Boto3 package to PyCharm.

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

Mo Battah
  • 31
  • 6
-2

Try following command in the terminal

pip install boto3
mischva11
  • 2,811
  • 3
  • 18
  • 34