From 41e02a65f15cd815b490f3a144228a0b69cbfda6 Mon Sep 17 00:00:00 2001 From: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com> Date: Wed, 13 Aug 2025 10:52:05 -0700 Subject: [PATCH] remove --live-stream from conda run command --- src/managers/conda/condaUtils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/managers/conda/condaUtils.ts b/src/managers/conda/condaUtils.ts index 18f0c52f..f8876f3d 100644 --- a/src/managers/conda/condaUtils.ts +++ b/src/managers/conda/condaUtils.ts @@ -329,7 +329,7 @@ async function getNamedCondaPythonInfo( run: { executable: path.join(executable) }, activatedRun: { executable: 'conda', - args: ['run', '--live-stream', '--name', name, 'python'], + args: ['run', '--name', name, 'python'], }, activation: [{ executable: 'conda', args: ['activate', name] }], deactivation: [{ executable: 'conda', args: ['deactivate'] }], @@ -374,7 +374,7 @@ async function getPrefixesCondaPythonInfo( run: { executable: path.join(executable) }, activatedRun: { executable: conda, - args: ['run', '--live-stream', '--prefix', prefix, 'python'], + args: ['run', '--prefix', prefix, 'python'], }, activation: [{ executable: conda, args: ['activate', prefix] }], deactivation: [{ executable: conda, args: ['deactivate'] }], @@ -938,7 +938,7 @@ export async function quickCreateConda( run: { executable: path.join(prefix, bin) }, activatedRun: { executable: 'conda', - args: ['run', '--live-stream', '-p', prefix, 'python'], + args: ['run', '-p', prefix, 'python'], }, activation: [{ executable: 'conda', args: ['activate', prefix] }], deactivation: [{ executable: 'conda', args: ['deactivate'] }],