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 ...
?
The -H flag is actually for the sudo command and not for pip. As taken from the docs
A look at this question might provide more insight into what could be happening.