ImportError: No module named boto3 - Server Fault
serverfault.com › questions › 747596Jan 08, 2016 · Without sudo rights it works. I have no idea why it doesn't run under sudo, which it did before updating, as /usr/local/bin is in PATH. Should I run pip under sudo or not? I installed boto3, but still get ImportError: No module named 'boto3'. This is when I execute a script that runs python3. But it seems that boto3 is installed for python2 ...
AWS Developer Forums: No module named 'boto3'
forums.aws.amazon.com › threadTo solve it, you have to make sure you're installing it for 2.7 version: This shall output Python 2.7: python --version. Next, run below commands: sudo apt-get install python-pip sudo python -m pip install boto3. To test it, simply start a new terminal and type: python import boto3. Regards. Re: No module named 'boto3'.