在python中导入boto3错误

时间:2016-05-19 14:24:53

标签: python boto3

我使用boto3安装了pip2.7 install boto3。现在,当python2.7 script.py import boto3 ImportError: No module named boto3时,我得到pip2.7 install boto3。当我再次Requirement already satisfied (use --upgrade to upgrade): boto3 in /usr/local/lib/python2.7/site-packages时,我得到pip2.7 install boto3

为什么会出现此错误,如何解决?

注意:我根据this SO question

进行了import facebook import json ACCESS_TOKEN = '' def pp(o): with open('facebook.txt', 'a') as f: json.dump(o, f, indent=4) g = facebook.GraphAPI(ACCESS_TOKEN) pp(g.get_connections('me', 'friends'))

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,也没有使用虚拟环境。 easy_install正在为我工​​作。我使用的是ubuntu 16.04和python版本2.7

easy_install boto3