接收ImportError:无法导入名称'DictVectorizer'

时间:2016-10-19 03:11:00

标签: python scikit-learn

我已经通过Anaconda安装了scikit-learn到python环境。这是在Ubuntu 14.04上。我的代码中抱怨的是

from sklearn.feature_extraction.text import DictVectorizer

错误是

Import Error: cannot import name 'DictVectorizer'

我尝试使用Conda卸载并重新安装,然后使用Pip。无论我如何安装,安装都会成功,没有错误。

如果我启动python命令行并输入导入,则不会给出错误。

有人会对如何在我的代码中导入DictVectorizer有任何建议吗?

1 个答案:

答案 0 :(得分:2)

我不熟悉那个图书馆。但是,查看github上的源代码时,您的导入路径显示错误。

from sklearn.feature_extraction import DictVectorizer应该有效