How to fix this "ImportError: cannot import name 'TweepError' from ..."?

How to fix this "ImportError: cannot import name 'TweepError' from ..."?

下面给出的行:

from tweepy import API, Stream, OAuthHandler, TweepError

生成 ImportError 例如: ImportError: cannot import name 'TweepError' from 'tweepy'

我试过:from tweepy.errors import TweepError,但它仍然会产生错误:
ImportError: cannot import name 'TweepError' from 'tweepy.errors'.

我在这里缺少什么?

自 4.0.0 以来,TweepError 已被 TweepyException 取代(参见 the changelog)。

所以使用from tweepy.errors import TweepyException(或from tweepy import TweepyException)。

并在您的代码中将 TweepError 替换为 TweepyException(或使用更具体的例外)。