diff --git a/spyder/plugins/ipythonconsole/utils/kernelspec.py b/spyder/plugins/ipythonconsole/utils/kernelspec.py index 8df807f7c2e..cf6c2042343 100644 --- a/spyder/plugins/ipythonconsole/utils/kernelspec.py +++ b/spyder/plugins/ipythonconsole/utils/kernelspec.py @@ -135,7 +135,9 @@ def argv(self): if conda_exe.endswith('micromamba'): kernel_cmd.extend(['--attach', '""']) else: - kernel_cmd.append('--live-stream') + # Note: We use --no-capture-output instead of --live-stream + # here because it works for very old Conda versions. + kernel_cmd.append('--no-capture-output') kernel_cmd.extend([ pyexec,