enchant

ImportError: The 'enchant' C library was not found. Please install it via your OS package manager, or use a pre-built binary wheel from PyPI

我与影子孤独终老i 提交于 2019-12-03 07:01:34
问题 The question is why I see the error message in the title when trying to import enchant. I am using Win64. 回答1: I found the answer in this GitHub page. In a nutshell, they have not shipped a wheel for the win_amd64 platform yet. 回答2: On Ubuntu, run sudo apt-get install libenchant1c2a 回答3: Resolved: On Win7-64 I ran pip3 install pyenchant==1.6.6 which seems to be the latest version of PyEnchant that still shipped with Win-64 binaries. Newer versions did not install for me, but this one did. 回答4

ImportError: The 'enchant' C library was not found. Please install it via your OS package manager, or use a pre-built binary wheel from PyPI

让人想犯罪 __ 提交于 2019-12-02 21:44:28
The question is why I see the error message in the title when trying to import enchant. I am using Win64. I found the answer in this GitHub page . In a nutshell, they have not shipped a wheel for the win_amd64 platform yet. On Ubuntu, run sudo apt-get install libenchant1c2a Resolved: On Win7-64 I ran pip3 install pyenchant==1.6.6 which seems to be the latest version of PyEnchant that still shipped with Win-64 binaries. Newer versions did not install for me, but this one did. For amazon ubuntu instance use. yum install enchant and then pip install pyenchant For me, the problem I ran into was