Trying to use compiled python packages with the #Fusion360API is miserable. there is no official way to actually do so. It basically boils down to either shipping the right version bundled with your Add-In and then scrambling to ship a fix when the fusion internal python version inevitably gets updated with zero warning, or pip installing it at runtime
@phos I thought wheels are version-intercompatible? or do you actually mean like, C/C++ modules for python that depend on the lib API?
@_r pure python are more version independent but all the ones with a core written in C seem to be quite picky, and most of the important ones are. Numpy, Scipy, Matplotlib, PyClipper etc