PyEnchant包含在bundle-packages.zip中,但它无法加载任何字典!为什么不?我总是得到“dict not found”错误。但字典在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)
答案 0 :(得分: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
答案 1 :(得分:0)
pyEnchant将无效,请尝试:
$ python setup.py py2app --packages=enchant
这将告诉py2app在site-packages.zip之外包含附魔包。