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
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)]