This commit is contained in:
@@ -189,9 +189,12 @@ def _install_virtual_machine(vm_name, working_dir="./vm_data", downloaded_file_n
|
|||||||
os.makedirs(working_dir, exist_ok=True)
|
os.makedirs(working_dir, exist_ok=True)
|
||||||
def __download_and_unzip_vm():
|
def __download_and_unzip_vm():
|
||||||
# Determine the platform and CPU architecture to decide the correct VM image to download
|
# Determine the platform and CPU architecture to decide the correct VM image to download
|
||||||
if platform.machine() == 'arm64': # macOS with Apple Silicon
|
if platform.system() == 'Darwin': # macOS
|
||||||
url = UBUNTU_ARM_URL
|
if os.uname().machine == 'arm64': # Apple Silicon
|
||||||
elif platform.machine().lower() in ['amd64', "x86_64"]:
|
url = UBUNTU_ARM_URL
|
||||||
|
else:
|
||||||
|
url = UBUNTU_X86_URL
|
||||||
|
elif platform.machine().lower() in ['amd64', 'x86_64']:
|
||||||
url = UBUNTU_X86_URL
|
url = UBUNTU_X86_URL
|
||||||
else:
|
else:
|
||||||
raise Exception("Unsupported platform or architecture")
|
raise Exception("Unsupported platform or architecture")
|
||||||
|
|||||||
Reference in New Issue
Block a user