What is the -H flag for pip?

2019-03-17 04:38发布

问题:

When using sudo pip install ... with pip version 6.0.4 or greater, I get some warnings like:

The directory '/home/drevicko/.cache/pip/log' or its parent directory is not owned by the current user and the debug log has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want the -H flag.

This warning appears to have been added in 6.0.4, but the -H flag doesn't appear in the pip install docs nor in the docs on pip's general options.

So, what is the -H flag and why do I need it when using sudo pip install ...?

回答1:

The -H flag is actually for the sudo command and not for pip. As taken from the docs

The -H (HOME) option requests that the security policy set the HOME environment variable to the home directory of the target user (root by default) as specified by the password database. Depending on the policy, this may be the default behavior.

A look at this question might provide more insight into what could be happening.



标签: python pip