Add support for arm7 for #63 to support raspberry pis

This commit is contained in:
David Dworken
2023-02-18 22:00:39 -08:00
parent f2298def32
commit 27cd544524
6 changed files with 37 additions and 0 deletions

View File

@ -18,6 +18,8 @@ if platform.system() == 'Linux' and platform.machine() == "x86_64":
download_url = download_options['linux_amd_64_url']
elif platform.system() == 'Linux' and platform.machine() == "aarch64":
download_url = download_options['linux_arm_64_url']
elif platform.system() == 'Linux' and platform.machine() == "armv7l":
download_url = download_options['linux_arm_64_url']
elif platform.system() == 'Darwin' and platform.machine() == 'arm64':
download_url = download_options['darwin_arm_64_url']
elif platform.system() == 'Darwin' and platform.machine() == 'x86_64':