With the Access Key & Secret Key located at my home directory, when I run the following in the command line:

from boto.ec2.connection import EC2Connection
conn = EC2Connection()

The console does not show any error but when I place the exact command in the python script. It displays an error, "No module named boto.ec2.connection".

Does anyone know why this error occur?

link|improve this question

73% accept rate
just try import boto to test... see what happen – Tauquir Oct 10 '11 at 8:57
feedback

1 Answer

up vote 0 down vote accepted

I just solve my problem after taking a short break. Yeah~!

sudo apt-get install python-boto

Python-boto package must be install for the connection to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.