Fix install.py script for arm7 so installs work on raspberry pis

This commit is contained in:
David Dworken
2023-09-06 21:35:28 -07:00
parent 578113e07c
commit 2a95553fdf

View File

@ -19,7 +19,7 @@ if platform.system() == 'Linux' and platform.machine() == "x86_64":
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']
download_url = download_options['linux_arm_7_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':