Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 251 Bytes

pip_upgrade_from_virtual_enviroment.md

File metadata and controls

16 lines (10 loc) · 251 Bytes

pip... upgrade all

To upgrade all current packages on a virtual enviroment...

Save all packages to file:

$ pip freeze > requirements.txt

Upgrade the packages from file:

$ pip install -r requirements.txt --upgrade