Install pyenchant on a Windows 64-bit machine

后端 未结 4 1204
情深已故
情深已故 2021-02-06 02:16

I want to install PyEnchant for spell checking and it requires enchant installed on my machine. But all the .exe files I could find were for win32 systems. Is there any other wa

4条回答
  •  不知归路
    2021-02-06 02:36

    If you are going to use PyEnchant for spell checking and suggestion, take a look at Pattern library, they support Python 3 on Windows 64-bit machine now. https://github.com/clips/pattern/tree/development

    In case you are interested in usage:

    from pattern.en import suggest
    suggest("fianlly")
    #output: [('finally', 1.0)]
    

提交回复
热议问题