View Single Post
Old 02-11-2019, 01:41 PM   #25
rolgiati
Groupie
rolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the endrolgiati knows the complete value of PI to the end
 
Posts: 168
Karma: 31650
Join Date: May 2011
Location: Asuncion (Paraguay)
Device: In the house, 3 K3 in use, 4 more in storage, and a K5 for testing
Quote:
Originally Posted by DiapDealer View Post
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.
rolgiati is offline   Reply With Quote