Inconsistent behavior of "Run Python File" command #25466
Unanswered
Liben-Chen
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm experiencing different behavior when running Python files through the VSCode Python extension using the "Run Python File" command on two different computers. Both installations were configured as default with miniforge for conda, and the same versions of Windows 11, VSCode, Python, and the Python extension.
Computer 1 (working correctly):
Command executed: conda run --name --live-stream python
Behavior: Shows real-time output in the terminal as the script runs
Computer 2 (problematic):
Command executed: conda run --name python
Behavior: No output appears in the terminal during execution; all output is only displayed after the application exits
The issue is that Computer 2 is missing the --live-stream flag, which prevents real-time output streaming. Are there any ways that I can configure to include the --live-stream flag?
Beta Was this translation helpful? Give feedback.
All reactions