Table of Contents

How To Install Enchant On Centos 8

dnf install dnf-plugins-core
dnf config-manager --set-enabled powertools
dnf install enchant-devel

Install Pyenchant

Once you have Enchant C libraries installed, you can install Pyenchant.

pip install pyenchant

Test Pyenchant

In the Python Shell do "import enchant", If you didnt see the error "The 'enchant' C library was not found and maybe needs to be installed.". It means enchant is installed successfully.

import enchant

Related Posts

1
2
3
4
5