Closed Zonkil9 closed 2 months ago
I didn't see this myself in a quick test but this is to do with the behaviour of tqdm
. These might be helpful: https://github.com/tqdm/tqdm/issues/506 (suggests piping stderr to /dev/null
), or https://stackoverflow.com/questions/37091673/silence-tqdms-output-while-running-tests-or-running-the-code-via-cron (suggests using TQDM_DISABLE
).
I decided to use the second solution and executed this line before the script:
export TQDM_DISABLE=1
Now everything is computing in the background. Thank you.
I ran the following script:
A few moments later, progress bars appeared on my screen, which interrupted other things I was doing.
and:
Shouldn't all contents of the output be redirected to
file.out
? Everything else besides progress bars is redirected tofile.out
as intended.