I have a commercial c++ application that calls Python files and uses Pytorch.
I will be shipping this application with an exe installer (created with Inno Setup) that also installs other dependencies, eg CUDA, by running an included exe installer.
My question is, how should I include a Pytorch installation with this application?
Locally I would use pip install, is that the best approach? Or can I somehow package a Pytorch installer with the application installer?