Closed barracuda156 closed 1 year ago
can you elaborate more?
Standard shared library extension on macOS is .dylib. While .so is used in some specific context, it is not how shared libraries are normally installed.
Thanks. Because .so still works and in our code we have something like
try:
if sys.platform == 'win32':
libsvm = CDLL(path.join(dirname, r'..\..\windows\libsvm.dll'))
else:
libsvm = CDLL(path.join(dirname, '../../libsvm.so.3'))
we think it may be better to keep using .so for now.
It should install as
liblinear.dylib
instead.