我使用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'))
答案 0 :(得分:0)
我遇到了同样的问题,也没有使用虚拟环境。 easy_install正在为我工作。我使用的是ubuntu 16.04和python版本2.7
easy_install boto3