similar to #496
conda runscripts appear at:
--live-stream: This option ensures that the standard output (stdout) and standard error (stderr) of the executed program are not captured or buffered. Instead, the output is streamed live to the terminal as the program runs.
Even without the --live-stream flag, the terminal's previous output is automatically cleared – similar to executing a cls/clear command, which is inconvenient for users to compare results.
conda run --live-stream -n base python -c "print('Hello')"
conda run -n base python -c "print('Hello')"
If the conda env is already activated , run
or
D:/Miniconda/envs/<env>/python.exe foo.py
can avoid conda run.
similar to #496
conda runscripts appear at:--live-stream: This option ensures that the standard output (stdout) and standard error (stderr) of the executed program are not captured or buffered. Instead, the output is streamed live to the terminal as the program runs.Even without the
--live-streamflag, the terminal's previous output is automatically cleared – similar to executing acls/clearcommand, which is inconvenient for users to compare results.If the conda env is already activated , run
or
can avoid
conda run.