0

我在我的 Eclipse 中安装了 Pydev 插件,并且在我的 python 代码中调用 PyLucene。Lucene 在 PYTHONPATH 中,因此

import lucene

没有错误。但是尝试使用从 lucene 类派生的任何东西都会出现“未解决的导入”错误。例如,

from org.apache.lucene.analysis.standard import StandardAnalyzer
from org.apache.lucene.index import DirectoryReader
from org.apache.lucene.queryparser.classic import QueryParser
from org.apache.lucene.search import IndexSearcher
from org.apache.lucene.store import SimpleFSDirectory
from org.apache.lucene.util import Version

上面的所有行都给出了这个错误。此外,此代码在我的 bash-shell 命令行中运行良好。因此,我确保我的 Eclipse 使用与我在 shell 中使用的相同的 PATH、LD_LIBRARY_PATH 和 PYTHONPATH 值。但是,错误仍然存​​在。

这里可能出了什么问题?

4

1 回答 1

0

从 4.0 版开始,pylucene 从平面命名空间变为嵌套命名空间,反映了 java 层次结构。

from org.apache.lucene.index import IndexReader
于 2014-04-14T21:54:11.747 回答