Issue Tracking

[Python] module 'tweepy' has no attribute 'StreamListener'

CommitGuy 2021. 10. 15. 01:14

Python으로 Konlpy를 사용해 형태소 분석을 하려다가 아래와 같은 문제가 발생하였습니다.

 

module 'tweepy' has no attribute 'StreamListener'

확인해보니 해당 문제는 tweepy 버전에 문제가 있는것 같습니다.

 

해결방법]

$ pip3 install tweepy==3.10.0

 

저의 경우 위와 같이 tweepy 버전을 3.10.0으로 해주니 문제가 해결되었습니다.