Self-built of pytorch wheel without having to install mkl in the target environment

I have built from tag 1.13.1 my own wheel for installation. I tried to use the same features as the official version for cpu (1.13.1+cpu) and that is why I have used mkl for compiling. However, when I try to install my pytorch version in a new environment this error is raised:

OSError: libmkl_intel_lp64.so: cannot open shared object file: No such file or director

I know that this will be solved by installing mkl, but how can I create the wheel without this being a requirement, since with the official version this is not required

Have you found solution for it?