1

PyEnchant 包含在 bundle 中的 site-packages.zip 中,但它无法加载任何字典!为什么不?我总是收到“找不到字典”错误。但字典在 site-packages.zip/enchant/share/enchant/myspell/.. 发生了什么?

    2012-03-01 14:24:42,469     EXCEPTION:
    2012-03-01 14:24:42,469         EXCEPTION TYPE: <class 'enchant.errors.DictNotFoundError'> EXCEPTION VALUE: Dictionary for language 'ru_RU' could not be found
    2012-03-01 14:24:42,469              TRACEBACK: ('/Users/dima/dev/up/up/consultant/client/dist/main.app/Contents/Resources/__boot__.py', 39, '<module>', None)
    2012-03-01 14:24:42,469              TRACEBACK: ('/Users/dima/dev/up/up/consultant/client/dist/main.app/Contents/Resources/__boot__.py', 36, '_run', None)
    2012-03-01 14:24:42,469              TRACEBACK: ('/Users/dima/dev/up/up/consultant/client/dist/main.app/Contents/Resources/main.py', 26, '<module>', None)
    2012-03-01 14:24:42,469              TRACEBACK: ('spell_check_text_edit.pyc', 21, '__init__', None)
    2012-03-01 14:24:42,470              TRACEBACK: ('enchant/__init__.pyc', 502, '__init__', None)
    2012-03-01 14:24:42,470              TRACEBACK: ('enchant/__init__.pyc', 264, '_request_dict_data', None)
    2012-03-01 14:24:42,470              TRACEBACK: ('enchant/__init__.pyc', 218, '_raise_error', None)
4

2 回答 2

2

您是否尝试从ftp://ftp.gnu.org/gnu/aspell/dict/0index.html安装 Aspell 和字典?
要安装 dict 只需下载ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-0.99f7-1.tar.bz2,解压它并

./configure && make && make install
于 2012-04-04T12:30:31.877 回答
0

当它是一个 zip 文件时,pyEnchant 将不起作用,请尝试:

$ python setup.py py2app --packages=enchant

这将告诉 py2app 在 site-packages.zip 之外包含附魔包。

于 2012-10-26T13:31:00.863 回答