Hello guys, i have a problem when i try use the function to sign one transaction with the python bitcoin-lib(https://github.com/petertodd/python-bitcoinlib), the error is:
Traceback (most recent call last):
File "blockchain.py", line 7, in <module>
from bitcoin.wallet import CBitcoinSecret
File "/usr/lib/python3.6/site-packages/bitcoin/wallet.py", line 29, in <module>
import bitcoin.core.key
File "/usr/lib/python3.6/site-packages/bitcoin/core/key.py", line 33, in <module>
ssl = ctypes.cdll.LoadLibrary(ctypes.util.find_library('ssl') or 'libeay32')
File "/usr/lib/python3.6/ctypes/init.py", line 426, in LoadLibrary
return self.dlltype(name)
File "/usr/lib/python3.6/ctypes/init.py", line 348, in init
self._handle = dlopen(self.name, mode)
OSError: libssl.so.45: cannot open shared object file: No such file or directory
any idea to fix the problem?