1pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
1py2
2$ pip install pip-review
3
4$ pip-review --local --interactive
5
6py3
7$ pip3 install pip-review
8
9$ py -3 -m pip_review --local --interactive
1$ pip download SomePackage
2$ pip download -d . SomePackage # equivalent to above
3$ pip download --no-index --find-links=/tmp/wheelhouse -d /tmp/otherwheelhouse SomePackage
4