> I am trying to install PyEnchant package on server machine.
>
> ...
>
> I then downloaded enchant-1.5.0.tar.gz, unzipped it and ran ./
> configure file.
You're on the right track here, you need a working installation of the
underlying enchant library before you can run PyEnchant.
First, what operating system are you running on your server? Many have
pre-built packages of enchant that will be much simpler to set up. For
example, on my Ubuntu machine I can do `apt-get install libenchant1c2a`.
Do you have root access on the server, or is it a shared hosting
environment?
If you are keen to install enchant from source, it should be a simple
matter of doing:
./configure
make
make install
> I also then removed PyEnchant package using easy_install -m option
You don't need to remove and re-install pyenchant, it will automatically
detect that the C library has been installed.
Ryan
--
Ryan Kelly
http://www.rfk.id.au | This message is digitally signed. Please visit
ry...@rfk.id.au | http://www.rfk.id.au/ramblings/gpg/ for details
pip install pyenchant