Skip to content

Instantly share code, notes, and snippets.

View mjrinker's full-sized avatar

Matt Rinker mjrinker

View GitHub Profile
@mjrinker
mjrinker / pipreplace.sh
Last active July 23, 2020 21:31 — forked from stucka/pipreplace.sh
Force pip to reinstall all Python packages
#!/bin/bash
pip freeze --local >pipfreeze.txt
pip install --upgrade --force-reinstall --no-cache-dir `cat pipfreeze2.txt`