How to include external library with python wheel package
You can use auditwheel to inject the external libraries into the wheel: auditwheel repair: copies these external shared libraries into the wheel itself, and automatically modifies the appropriate RPATH entries such that these libraries will be picked up at runtime. This accomplishes a similar result as if the libraries had been statically linked without requiring … Read more