python pip silent install

Question:

Is there a way to do a silent install with pip?

For some more background I’m using fabric to do server deployments and I want to be able to setup a new server or update an existing one without any interaction and some of the packages require a y/n response.

Asked By: wegrata

||

Answers:

If the answer is always y:

yes | pip install <package>
Answered By: Fred Foo

Adding an answer, since things have changes since 2011…

Pip version 1.1 release on 2012-02-16 has introduced a command line switch --exists-action <action> which allows to specify the default behavior from (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.

According to the current documentation pip can only prompt for information if --exists-action is unspecified.

Answered By: bluenote10

A silent install is possible by using the quiet flag:

pip install somepackage --quiet

This hides installation messages.
As per its documentation, note that this option is additive, and can be specified up to 3 times to remove messages of increasing levels of importance (warning, error, critical).

Additionally, you may want to force "always yes" as per this answer, and/or an exists-action option for a default behaviour when multiple choices exist:

yes | pip install somepackage --quiet --exists-action i

where exists-action i stands for ignore.

This truly has its mouth shut!

Answered By: alelom
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.