Skip to content

Instantly share code, notes, and snippets.

@hronak
Last active August 13, 2017 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hronak/a2bdb5ef850efd17a8e16adc926b5493 to your computer and use it in GitHub Desktop.
Save hronak/a2bdb5ef850efd17a8e16adc926b5493 to your computer and use it in GitHub Desktop.
Universal Update Command for Fedora 25
sudo python2 -m pip install -U pip; sudo python3 -m pip install -U pip; sudo python2.7 -m pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo python2.7 -m pip install -U --no-cache-dir; sudo python3 -m pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo python3 -m pip install -U --no-cache-dir; sudo gem update; sudo dnf update;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment