所以我想和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
任何提示或建议?
答案 0 :(得分:2)
在寻求答案后几天,在询问Stackoverflow后13个小时,找到了它:
来自org.apache.lucene.store的导入SimpleFSDirectory
显然,大多数教程已经过时了。