From e22041328452706510677084d84af871d8b950ca Mon Sep 17 00:00:00 2001 From: Zhanwen Chen Date: Tue, 16 Nov 2021 17:34:39 -0500 Subject: [PATCH] Add ipadic as a pip dependency The build process threw an error because I did not have ipadic installed via pip. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b1ea0a45..f9a5618e 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ }, extras_require={ 'vectors': ['numpy', 'scipy', 'statsmodels', 'tables', 'pandas', 'scikit-learn', - 'mecab-python3', 'jieba', 'marisa_trie', 'matplotlib >= 2', 'annoy'] + 'mecab-python3', 'jieba', 'marisa_trie', 'matplotlib >= 2', 'annoy', 'ipadic'] }, )