I'm wondering how to find the architecture of the machine python is running on and save it to a string. The only other example I've been able to find works only on Windows, and doesn't even detect the proper architecture if it's Windows on Arm. Any solutions would be greatly appreciated.
Thanks,
NullUsxr
('64bit', ''), despite my system architecture being aarch64.platform.machine()orplatform.processor()seem like they might give you what you want?platform.machine()surprisingly returns the correct value of 'arm64'! Thank you!