3

我正在尝试在 Mac OS X Yosemite 上安装 pyenchant。它在 linux 机器上运行良好,但在 mac 上运行良好,我遇到以下错误:

ImportError:未找到“附魔”C 库。请通过您的操作系统包管理器安装它,或使用 PyPI 的预构建二进制轮。

这就是我安装软件包的方式:

pip install pyenchant

接下来,我以这种方式导入它:

import enchant

我正在使用 Python 3.4。

4

2 回答 2

1

Enchant 是一个 C 库,pyenchant 为该库提供 Python 绑定。为了使您的代码正常工作,您还需要安装 Enchant。如果您使用的是自制软件,则可以使用:

>>brew install enchant

安装 Enchant 后,您可以安装 Pyenchant:

>>pip install pyenchant

我希望这有帮助。

于 2015-09-29T19:59:39.647 回答
0

Also, make sure your Xcode is updated. If it is not updated, you will get an error when running the brew installer:
configure: error: cannot run C compiled programs.

于 2016-01-11T21:27:55.750 回答