Closed
Description
❓ Questions and Help
I have followed the document and built the libtorchvsion.dylib but when I ran otool -L libtorchvsion.dylib
it showed
libtorchvision.dylib:
@rpath/libtorchvision.dylib (compatibility version 0.0.0, current version 0.0.0)
@rpath/libc10.dylib (compatibility version 0.0.0, current version 0.0.0)
@rpath/libpython3.8.dylib (compatibility version 3.8.0, current version 3.8.0)
@rpath/libtorch.dylib (compatibility version 0.0.0, current version 0.0.0)
@rpath/libtorch_cpu.dylib (compatibility version 0.0.0, current version 0.0.0)
/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 902.1.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1281.100.1)
Is there a way to get rid of libpython3.8.dylib
, I think it is required for using python custom operators and we will only use C++.