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