A Python package that searches for shared libraries on various platforms.
import findlibs
lib = findlibs.find("eccodes")
# If package name differs from library name use:
lib = findlibs.find(lib_name="odccore", pkg_name="odc")pip install findlibsgit clone https://github.com/ecmwf/findlibs
cd findlibs
pip install -e ".[test]"
pytestThe module only contains the find() function.
def find(lib_name, pkg_name=None)Returns the path to the selected library, or None if not found.
Arguments:
lib_namestr - Library name without thelibprefix. The name of the library to find is formed usinglib_nameand a platform specific suffix (by default ".so"). E.g. whenlib_nameis "eccodes" the library name will be "libeccodes.so" on Linux and "libeccodes.dylib" on macOS.pkg_namestr, optional - Package name if it differs from the library name.
Returns:
str or None: Path to selected library
The algorithm to find the library is as follows:
-
First, tries the
libandlib64directories undersys.prefixand$CONDA_PREFIX -
Next, tries the
libandlib64directories under the paths defined by thepkg_name + "_HOME"andpkg_name + "_DIR"environment variables. Both lowercase and uppercase versions are tested. E.g. ifpkg_nameis "eccodes" it will check the paths defined by$eccodes_dir,$eccodes_home,$ECCODES_DIRand$ECCODES_HOME. -
Next, tries to load the search paths from the user defined
~/.findlibsor~/.config/findlibs/findlibs.confINI configuration files. Then for all the user defined search paths thelibandlib64directories are tried.Please note that only one of these files can exist. The configuration file can contain multiple search paths, but no relative paths or paths to files are allowed. The file can even be completely empty or can contain no paths at all. The file format is as follows:
[Paths] /path/to/lib_directory -
Next, tries the directories defined by the
$LD_LIBRARY_PATHand$DYLD_LIBRARY_PATHenvironment variables -
Finally, tries the
libandlib64directories under the following paths "/", "/usr/", "/usr/local/", "/opt/", "/opt/homebrew/" and "~/.local/"