Created
January 23, 2019 23:59
-
-
Save rlan/fe76038689c86b2b1e828ce06042372a to your computer and use it in GitHub Desktop.
force reinstall of pip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #Force a reinstall of pip: | |
| curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
| python3 get-pip.py --force-reinstall | |
| # Verify install: | |
| pip3 -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment