ModuleNotFoundError: No module named 'sentiment_mod'

ModuleNotFoundError: No module named 'sentiment_mod'

我正在使用 nltk sentiment_mod 但 python 正在抛出模块未找到错误

from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
import sentiment_mod as sen_mod

错误是

ModuleNotFoundError                
      Traceback (most recent call last)
      2 from tweepy import OAuthHandler
      3 from tweepy.streaming import StreamListener
----> 4 import nltk.sentiment_mod as sen_mod
      5 import json
      6 

ModuleNotFoundError: No module named 'sentiment_mod'

There's no such module in ntlk.从名字上看,是对ntlk.sentiment的一些私人改造。请咨询从何处获得此代码以及如何使用它。也许还有一些额外的要求,或者它已经过时了。

"sentiment_mod" 似乎是之前创建并在您的代码中调用的情绪分析模块的文件名。 一个很好的例子是: https://pythonprogramming.net/sentiment-analysis-module-nltk-tutorial/