Quote:
Originally Posted by DiapDealer
Try this: from a command prompt, type python3.
At the >>> prompt, type the following lines one-at-time followed by the Enter key after each one:
from ctypes.util import find_library
print(find_library("hunspell"))
print(find_library("hunspell-1.3"))
print(find_library("hunspell-1.6"))
Let me know what the output of each print command is. You can exit the python shell with quit() or exit()
|
To hear is to obey ;-3)
Code:
ron@localhost:~ $ python3
Python 3.6.5 (default, Jan 16 2019, 21:12:16)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes.util import find_library
>>> print(find_library("hunspell"))
None
>>> print(find_library("hunspell-1.3"))
libhunspell-1.3.so.0
>>> print(find_library("hunspell-1.6"))
libhunspell-1.6.so.0
>>> exit()
ron@localhost:~ $
Thank you again for your patience.