django で次のエラーが発生しました。
Exception Type: ImportError
Exception Value: No module named sparse
importerror の原因は次のとおりです。
from sklearn.svm.sparse import LinearSVC
from nltk.classify.scikitlearn import SklearnClassifier
これを解決するために、次の方法で scikit-learn のスパース モジュールをインストールしようとしています。
sudo easy_install scikits.sparse
しかし、私はこのエラーが発生しています:
no previously-included directories found matching 'doc/_build'
warning: no previously-included files matching '*~' found anywhere in distribution
warning: no previously-included files matching '*.so' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
clang: error: no such file or directory: 'scikits/sparse/cholmod.c'
clang: error: no input files
error: Setup script exited with error: command 'clang' failed with exit status 1
どうすればこの問題を解決できますか?
ありがとう。