VADER создает UnicodeDecodeError в API init
На моей машине Windows с установленным Python 3.6,
Я выполняю следующие коды для инициализации API программы VADER:
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
analyzer = SentimentIntensityAnalyzer()
Однако я получаю эту ошибку:
>>>analyzer = SentimentIntensityAnalyzer()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\durak\AppData\Local\Programs\Python\Python36\lib\site-packages\vaderSentiment\vaderSentiment.py", line 199, in __init__
self.lexicon_full_filepath = f.read()
File "C:\Users\durak\AppData\Local\Programs\Python\Python36\lib\encodings\cp1254.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9e in position 6574: character maps to <undefined>
Примечание: он отлично работает на моем сервере CentOS Linux с Python 3.6.
Что может быть причиной этой ошибки?