diff --git a/desktop_env/server/main.py b/desktop_env/server/main.py index 508ef50..f4107d2 100644 --- a/desktop_env/server/main.py +++ b/desktop_env/server/main.py @@ -143,7 +143,7 @@ def launch_app(): try: if 'google-chrome' in command and _get_machine_architecture() == 'arm': index = command.index('google-chrome') - command[index] = 'chromium-browser' # arm64 chrome is not available yet, can only use chromium + command[index] = 'chromium' # arm64 chrome is not available yet, can only use chromium subprocess.Popen(command, shell=shell) return "{:} launched successfully".format(command if shell else " ".join(command)) except Exception as e: