使用tweepy导入错误

时间:2015-08-31 16:09:48

标签: python linux tweepy

我试图使用导入twitter.streaming,但是它说导入错误。模块没有找到。我需要帮助,因为我正在处理项目以检索推文和tweepy是安装在我的Linux上。我安装了python 2.7和3.4。我想用3.4。感谢

1 个答案:

答案 0 :(得分:0)

如果您使用的是Linux / pip,请确保安装了tweepy:

sudo pip install tweepy

然后在您正在设计的模块或类中,您需要根据需要导入,如下所示:

from tweepy.streaming import StreamListener
from tweepy import Stream
from tweepy import OAuthHandler