Allow to silence download progress bar
See original GitHub issueVersion 6.0 of pip introduced a download progress bar to make make watching pip download a package more enjoyable. Until version 1.5.6 the progress was only indicated by a percentage count moving up.
The verbose progress bar is nice in general, however, it fills log files more quickly (e.g. when you log automatic deployments) and makes them less readable. Unfortunately, it doesn’t look like that it’s possible to silence only the progress bar, just --quiet
is available as a command line option, which then silences the execution of (e.g.) pip install -r requirements.txt
completely though.
An option to selectively silence parts of the installation progress, including the download progress bar specifically, would be very nice.
Issue Analytics
- State:
- Created 9 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
curl hide progress bar output on Linux/Unix shell scripts
The procedure to hide curl progress bar is to pass the -s or --silent option to the curl command: Open the terminal application...
Read more >Getting WGET to display a less verbose output - Super User
You can use -nv or --no-verbose to make wget less verbose, but it won't show download progress in that case.
Read more >How to hide Android sdkmanager download progress bar?
As of now the documentation lists all the arguments and there is no --silent . Pipeing it to /dev/null to silence it can...
Read more >Stop Firefox from showing Download Progress panel when ...
Disable downloads flyout menu from appearing on new downloads. Open Firefox web browser. Type about:config in the address bar. Then click on “ ......
Read more >Hide PowerShell Progress Bars
Hide a PowerShell progress bar with $ProgressPreference · Stop – Doesn't display a status bar, but it also displays and error and stops...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This works for run() but not for sudo() (unless sudo is configured to allow non tty commands). Surely this can be resolved somehow, but why couple these two so separate concerns? a
--no-progress
seems like a good focused solution. for CI systems, the progress bar is really just extra noise.@dstufft Passing
pty=False
as an argument torun()
in Fabric works fine. Thanks! Related documentation is found in the Interaction section of the Fabric docs.