I'm trying to work with a library that is compiled to /usr/local/lib/libName.so
but while running the python script that needs this file for:
from ctypes import CDLL
[...]
__lib = CDLL('libName.so')
I get:
OSError: libName.so: cannot open shared object file: No such file or directory
So i would like to know where i need to copy the .so file so that this CDLL call works properly.