Guest User

Untitled

a guest
Mar 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. echo "Brew"
  4. brew upgrade
  5. brew cask reinstall $(brew cask outdated | cut -d ' ' -f 1) >/dev/null 2>&1
  6. brew cleanup
  7. brew cask cleanup
  8.  
  9. echo "Node"
  10. npm -g upgrade
  11.  
  12. echo "Python"
  13. eval "$(pyenv init -)"
  14.  
  15. for pv in $(pyenv versions --bare --skip-aliases) system; do
  16. echo ${pv}
  17. pyenv shell ${pv}
  18. pip list --format=legacy \
  19. | cut -d ' ' -f 1 \
  20. | xargs pip install -U
  21. done
Add Comment
Please, Sign In to add comment