You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a look through the docs and issues but wasn't able to find something specific to this, so apologies if I missed it. If I run a command that outputs a lot of information (like choco install nodejs for example, which installs Node via Chocolatey and has lots of progress output), the output is only shown in 1 flush after the command has been finished. Is there any way of getting Plumbum to output to the console more regularly so you can see the progress of longer running and verbose commands?
The text was updated successfully, but these errors were encountered:
Thanks very much :). So looking through that code it seems to bit that triggers realtime are the sys parts: local["choco"]["install", "nodejs", "-y"].run(stdout = sys.stdout, stderr = sys.stderr)
which seems equivalent to: local["choco"]["install", "nodejs", "-y"](stdout = sys.stdout, stderr = sys.stderr)
I thought this would essentially be the default, hence the confusion. It would be great if this was included in the documentation somewhere. Also not sure if it's possible to set this as the default somehow to avoid duplicated this everywhere?
I had a look through the docs and issues but wasn't able to find something specific to this, so apologies if I missed it. If I run a command that outputs a lot of information (like
choco install nodejs
for example, which installs Node via Chocolatey and has lots of progress output), the output is only shown in 1 flush after the command has been finished. Is there any way of getting Plumbum to output to the console more regularly so you can see the progress of longer running and verbose commands?The text was updated successfully, but these errors were encountered: