36

Using pip install on some large package doesn't show any progress report while downloading.

Using the -v, --verbose option doesn't do it and there doesn't seem to be any other relevant option.

Shahar 'Dawn' Or
  • 2,713
  • 1
  • 26
  • 38

2 Answers2

19

At least pip9 has -v option which prints debug msg during installation of the package.

$ pip --version                                                                                                                                                                                                                 
pip 9.0.1

Help:

$ pip install --help
..
..
-v, --verbose               Give more output. Option is additive, and can be used up to 3 times.

Usage:

pip install -r requirements.txt -vvv
vvvvv
  • 25,404
  • 19
  • 49
  • 81
vkonanki
  • 199
  • 1
  • 3
4

Seems that pip needs a --log argument to echo to the screen, e.g.:

$ pip -v --log /tmp/pip.log install $python_pkg --upgrade
boardrider
  • 5,882
  • 7
  • 49
  • 86