我正在尝试为 python 中的一个项目获取 sentiwordnet 分数,我在某处找到了这段代码。
import sentiwordnet
from sentiwordnet import *
swn_filename = 'C:\\Python27\\Lib\\SentiWordNet_3.0.0_20130122.txt'
swn = SentiWordNetCorpusReader(swn_filename)
等等......但是,当我运行它时,它会抛出错误“没有名为 sentiwordnet 的模块”。我试图 pip install sentiwordnet 认为该模块可能丢失,但这也引发了错误。该怎么办??请帮忙。