I am running python on a m1 Mac with Rosetta, on a x86_64 architecture.
During the execution I need to use subprocess.run
to launch some external program. However that program need to run under arm64 architecture.
Is there a possible solution for doing that? Simply running from an arm64 terminal does not do the trick, and it gets overridden by the Python architecture.
I am using python==3.8.2
.