diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-27 00:20:56 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-27 00:20:56 -0700 |
commit | 21110bb7277b09a40b367d336f9eb318a874426e (patch) | |
tree | 8543d08b780c0e1661ab123a59456868d6d9e1e8 /extension/src/activation | |
parent | a46f753f8c1245a0954c301a586b69889fc366db (diff) | |
download | sncontinue-21110bb7277b09a40b367d336f9eb318a874426e.tar.gz sncontinue-21110bb7277b09a40b367d336f9eb318a874426e.tar.bz2 sncontinue-21110bb7277b09a40b367d336f9eb318a874426e.zip |
checkpoint on new streaming
Diffstat (limited to 'extension/src/activation')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 593b727e..cdaf3ac0 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -121,7 +121,7 @@ async function setupPythonEnv() { activateCmd, pipUpgradeCmd, `${pipCmd} install -r requirements.txt`, - ].join(" && "); + ].join(" ; "); const [, stderr] = await runCommand(installRequirementsCommand); if (stderr) { throw new Error(stderr); @@ -255,10 +255,10 @@ export async function downloadPython3() { throw new Error("python3 not found"); } else if (os === "linux") { command = - "sudo apt update && upgrade && sudo apt install python3 python3-pip"; + "sudo apt update ; upgrade ; sudo apt install python3 python3-pip"; } else if (os === "win32") { command = - "wget -O python_installer.exe https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe && python_installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0"; + "wget -O python_installer.exe https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe ; python_installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0"; pythonCmd = "python"; } |