1

所以我想玩一下 PyLucene,因为有人给了我一个 cfs 文件,而 PyLucene 看起来是在 python 中处理它的最好方法。我只遵循了http://bendemott.blogspot.co.uk/2013/11/installing-pylucene-4-451.html的教程

我在 Ubuntu 12.04

然后当我在我的控制台中做

python
>>> import lucene
>>> from lucene import SimpleFSDirectory

我收到这个错误

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name SimpleFSDirectory

任何提示或建议?

4

1 回答 1

2

经过几天寻找答案并在询问 Stackoverflow 13 小时后,找到了它:

从 org.apache.lucene.store 导入 SimpleFSDirectory

显然,大多数教程都已过时。

于 2014-02-26T08:59:07.210 回答