Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/managers/conda/condaUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'] }],
Expand Down Expand Up @@ -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'] }],
Expand Down Expand Up @@ -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'] }],
Expand Down
Loading