Skip to content

Instantly share code, notes, and snippets.

@e96031413
Created December 24, 2019 12:15
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 e96031413/a04d030cf30655ddb345ecf57af50986 to your computer and use it in GitHub Desktop.
Save e96031413/a04d030cf30655ddb345ecf57af50986 to your computer and use it in GitHub Desktop.
Upgrade all of your python packages with pip at one time.
#only for pip >= 10.0.1
#for pip < 10.0.1, please upgrade your pip version with the following code
'''python -m pip install --user --upgrade pip'''
import pkg_resources
from subprocess import call
packages = [dist.project_name for dist in pkg_resources.working_set]
call("pip install --upgrade " + ' '.join(packages), shell=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment