diff options
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 53ca8dc6..9de306b4 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -166,7 +166,9 @@ export async function startContinuePythonServer(redownload: boolean = true) { os.platform() === "win32" ? "windows/run.exe" : os.platform() === "darwin" - ? "mac/run" + ? os.arch() === "arm64" + ? "apple-silicon/run" + : "mac/run" : "linux/run"; const destination = path.join( |