使用带有 Python 3 的 Mac OSX 10.12.3。我已经安装了 pyenchant,但它仅适用于预安装的字典。
import enchant
print(enchant.list_languages())
['de_DE', 'en_AU', 'en_GB', 'en_US', 'fr_FR']
我已经安装了 Homebrew 并尝试按照以下答案从ftp://ftp.gnu.org/gnu/aspell/dict/0index.html安装瑞典语词典: https ://stackoverflow.com/a/35757817/4802426
brew install aspell-sv
Error: No available formula with the name "aspell-sv"
==> Searching for a previously deleted formula...
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
Error: No formulae found in taps.
我也尝试使用以下答案安装它:https ://stackoverflow.com/a/11807786/4802426
但这也不起作用。使用此方法安装可以正常工作,但是在列出上述语言时,不会出现新语言。我已经为不同的语言和提供者尝试了上述方法,例如myspell-es
,aspell-es
等。
我该如何从这里前进?其他人一定也解决了同样的问题。