##初めに
現在、形態素解析をしたデータから、tfidf値を算出しようと、TfidfTransformerを使いたいと考えています。しかし、うまくできずエラーが出てしまいます。
##環境
windows20
jupyter notebook python3
##コード
python
1import codecs 2from sklearn.feature_extraction.text import TfidfVectorizer
##結果
ImportError: No module named 'sklearn.__check_build._check_build'
Contents of C:\Users\NAOTO\Anaconda3\lib\site-packages\sklearn_check_build:
setup.py check_build.cp37-win_amd64.pyd__init.py
pycache
It seems that scikit-learn has not been built correctly.
If you have installed scikit-learn from source, please do not forget
to build the package before using it: run python setup.py install
or
make
in the source directory.
If you have used an installer, please check that it is suited for your
Python version, your operating system and your platform.
##終わりに
エラー文を見ると、何かインストールをしないといけない?のかなと思っているのですが、知識がなく、なにもわからずじまいです。
ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー