Skip to content

Instantly share code, notes, and snippets.

@willnode
Created August 6, 2021 04:23
Show Gist options
  • Save willnode/700f291a1ed83ab0ec2a3cd55dde1919 to your computer and use it in GitHub Desktop.
Save willnode/700f291a1ed83ab0ec2a3cd55dde1919 to your computer and use it in GitHub Desktop.
Update and Fix Python PIP on Linux Centos
pip --version
pip install -U pip
dnf reinstall python3.8 -y
alternatives --install /usr/bin/pip pip /usr/local/bin/pip3.8 1
alternatives --set pip /usr/local/bin/pip3.8
pip --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment