本文介绍了ImportError:没有名为sklearn.feature_extraction.text的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从python 2.7pacman程序包管理器中使用,并安装sclearn.但是当我遇到ImportError时:

I use from python 2.7 and pacman package manager, and install sclearn with it.but when i have an ImportError:

>>> from sklearn.feature_extraction.text import TfidfVectorizer
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named sklearn.feature_extraction.text

我如何解决此错误?

推荐答案

对于python 2,您应该可以使用以下命令通过pacman进行安装:

For python 2, you should be able to use this command to install using pacman:

确保程序包名称中包含数字"2".

Make sure the package name has the number "2" in it.

按照 scikit-learn的安装指南,另一种安装方法是使用pip :

As per scikit-learn's installation guide, another way to install it is using pip:

这篇关于ImportError:没有名为sklearn.feature_extraction.text的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 07:15