Advertisement
python_notes

Upgrading all packages with pip

Dec 9th, 2016
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. .
  2.  
  3.  
  4.  
  5.  
  6. www.n1tr0g3n.com
  7.  
  8.  
  9. Upgrading all packages with pip
  10.  
  11.  
  12. pip freeze --local | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 pip install -U
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement