PIP d'installation de mise à niveau tout
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
Fine Falcon
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
# Open your command shell and enter the below command. This will upgrade all packages system-wide to the latest or newer version available in the Python Package Index (PyPI)
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
#outputs the list of installed packages
pip freeze > requirements.txt
#updates all packages
pip install -r requirements.txt --upgrade
pip list --outdated --format=freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
pip install Django --upgrade
py2
$ pip install pip-review
$ pip-review --local --interactive
py3
$ pip3 install pip-review
$ py -3 -m pip_review --local --interactive
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}