@@ -329,7 +329,7 @@ async function getNamedCondaPythonInfo(
329329 run : { executable : path . join ( executable ) } ,
330330 activatedRun : {
331331 executable : 'conda' ,
332- args : [ 'run' , '--live-stream' , '-- name', name , 'python' ] ,
332+ args : [ 'run' , '--name' , name , 'python' ] ,
333333 } ,
334334 activation : [ { executable : 'conda' , args : [ 'activate' , name ] } ] ,
335335 deactivation : [ { executable : 'conda' , args : [ 'deactivate' ] } ] ,
@@ -374,7 +374,7 @@ async function getPrefixesCondaPythonInfo(
374374 run : { executable : path . join ( executable ) } ,
375375 activatedRun : {
376376 executable : conda ,
377- args : [ 'run' , '--live-stream' , '-- prefix', prefix , 'python' ] ,
377+ args : [ 'run' , '--prefix' , prefix , 'python' ] ,
378378 } ,
379379 activation : [ { executable : conda , args : [ 'activate' , prefix ] } ] ,
380380 deactivation : [ { executable : conda , args : [ 'deactivate' ] } ] ,
@@ -938,7 +938,7 @@ export async function quickCreateConda(
938938 run : { executable : path . join ( prefix , bin ) } ,
939939 activatedRun : {
940940 executable : 'conda' ,
941- args : [ 'run' , '--live-stream' , '- p', prefix , 'python' ] ,
941+ args : [ 'run' , '-p' , prefix , 'python' ] ,
942942 } ,
943943 activation : [ { executable : 'conda' , args : [ 'activate' , prefix ] } ] ,
944944 deactivation : [ { executable : 'conda' , args : [ 'deactivate' ] } ] ,
0 commit comments