Most of tools I'm using have some mode (often ON by default) where they ask me zero questions while running the command. apt-get is an example close to pip. There's -y option which makes it non-interactive. Is there any such option for pip? If there's no such option how to wrap it into some script which will achieve what I want. For example I would like to run something like:
pipyes install mypackage
Currently I'm doing this, but would like to wrap it into script:
yes | pip install mypackage
Is it "correct" way to achieve pip non-interactive mode.