Skip to content

Instantly share code, notes, and snippets.

View Lucifer-00007's full-sized avatar
🙏
print("Namaste World")

Aniruddha Pandey Lucifer-00007

🙏
print("Namaste World")
View GitHub Profile
@Lucifer-00007
Lucifer-00007 / upgrade_pip_packages.py
Created April 17, 2021 07:56 — 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):