From 29d2f695567e30b4669830c57b97f3773bdb76d5 Mon Sep 17 00:00:00 2001 From: Tianbao Xie <47296835+Timothyxxx@users.noreply.github.com> Date: Thu, 18 Apr 2024 21:36:36 +0800 Subject: [PATCH] Fix case for setup on headless machine --- setup_vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_vm.py b/setup_vm.py index 9f6e000..1f3202b 100644 --- a/setup_vm.py +++ b/setup_vm.py @@ -84,7 +84,7 @@ def get_vmrun_type(): # Start the virtual machine -subprocess.run(f'vmrun {get_vmrun_type()} start "{VM_PATH}"', shell=True) +subprocess.run(f'vmrun {get_vmrun_type()} start "{VM_PATH}" nogui', shell=True) print("Starting virtual machine...") # Get the IP address of the virtual machine