Skip to content

Instantly share code, notes, and snippets.

View nwokeo's full-sized avatar

Obi-Ike Nwoke nwokeo

View GitHub Profile
@nwokeo
nwokeo / upgrade_pip_packages.py
Last active July 10, 2018 22:28 — forked from serafeimgr/upgrade_pip_packages.py
A python script to upgrade all outdated python packages.
"""
This script upgrades all outdated python packages.
"""
__author__ = "serafeimgr"
from multiprocessing import Pool, cpu_count
from subprocess import PIPE, Popen
def run_command(command):