The question is why I see the error message in the title when trying to import enchant. I am using Win64.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
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.
I found the answer in this GitHub page.
In a nutshell, they have not shipped a wheel for the win_amd64 platform yet.
On Windows x64 I've solved this problem as follows:
Important:İf you use python32 interpreter you must specify this location:
if you use python 3.5 interpreter version your location may be like this:
and finish the installation. Pip commands will work now for other dependency packages.
For amazon ubuntu instance use.
and then
For me, the problem I ran into was that I had an old version of pip. I installed the latest version and was able to download the pyenchant library.
pip install -U pip
On Ubuntu, run
sudo apt-get install libenchant1c2a