It looks like aarch64 distribution is not available for linux. Is it possible for pytorch team to publish one ?
Wouldn’t the pip wheels already ship with all needed libs or which part do you need exactly?
I was trying to add it as dependency using cmake.
The wheels do ship with libtorch_*.so so you should be able to use them in your cmake project. You can use python -c “import torch; print(torch.__path__) to see where the wheel is installed. The install folder contains a /lib folder which ships with all DSOs.
1 Like
