I am trying to install a python package from gitlab. I am using pip install git+gitlab_package_address
, like here. After that, I am able to import the package. But the package comes with an .so file and later it throws an error: OSError: $LD_LIBRARY_PATH/lib{that_package}.so: cannot open shared object file: No such file or directory
.
Manual trial: I can clone the repo via SSH and move into the repo directory. Compile to get the desired lib{that_package}.so
(checked that it exists using ls
) and using export LD_LIBRARY_PATH=/absolute/path/to/the/repo/directory
. Still the same error.
Any help is appreciated.