PyEnchant包含在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)

最佳答案

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

./configure && make && make install

关于python - py2app和pyEnchant怎么回事?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9514148/

10-11 07:37