completely remove a package with all its cache with pip code example
Example 1: python remove cached package
# to Pip install Add --no-cache-dir parameter before intsall
pip --no-cache-dir install
Example 2: clear pip cache
# this doesnt clear it but allows install with no cache
pip install PACKAGE --no-cache-dir