How to make python and it's package be installed when application is installed?

I have done some python code for an unreal game engine project. I have manually installed python and other packages (such as sklearn, numpy etc mostly installed using pip) in my windows system. I want python and those packages to be installed auto while users install the application.

Any way of doing it? Thanks!

Well this is something beyond UE4 as it does not have installer solution in era of online stores it just give you raw files to deply, you need to setup installation yourself and for each online store you plan to deploy you need set up that accordenly

Thank you!