If you already installed in one version of python and then install a higher version of python, boto will not be found in the new version of python.
For example, I had python2.7 and then installed python3.5 (keeping both). My script under python3.5 could not find boto. Running " pip install boto " informed me that boto was already installed in /usr/lib/python2.7/dist-packages .
So i did
pip install
This allowed my script under python3.5 to find boto.
royappa Feb 24 '17 at 10:03 2017-02-24 10:03
source share