我正在尝试在使用情绪分析的Windows OS上的python2.7中运行代码
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
analyzer = SentimentIntensityAnalyzer()
我收到此错误
ImportError: No module named vaderSentiment
任何人都可以帮我吗?
答案 0 :(得分:1)
假设你从7个月前解决了这个问题,但对于其他寻找它的人来说:
进入terminal / cmd并粘贴以下内容:
pip install vaderSentiment
有关VADER的更多信息:https://github.com/cjhutto/vaderSentiment
答案 1 :(得分:0)
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
#note: depending on how you installed (e.g., using source code download versus pip install), you may need to import like this:
#from vaderSentiment import SentimentIntensityAnalyzer
阅读代码中的注释
答案 2 :(得分:0)
尝试使用 Python3 而不是 Python 来运行您的文件。有时,当您的计算机上安装了不同的 pips/pythons 时,您可能需要在 python3 中运行它时在 python2 中安装了 vaderSentiment。