remove and install pip code example
Example 1: pip remove
# python2
pip uninstall package_name
# python3
pip3 uninstall package_name
Example 2: uninstall editable pip
rm -r $(find . -name '*.egg-info')
# python2
pip uninstall package_name
# python3
pip3 uninstall package_name
rm -r $(find . -name '*.egg-info')