-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to silence download progress bar #2369
Comments
Hmm, the download bar should only show itself if Example:
Doesn't show the progress bar because a pipe isn't a tty. |
That's Fabric executing The Fabric |
I think what you want to do is just pass |
@dstufft Passing |
This works for run() but not for sudo() (unless sudo is configured to allow non tty commands). |
Version 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.
The text was updated successfully, but these errors were encountered: