python pip clear cache code example
Example 1: ignore cache pip
# Add --no-cache-dir before install
pip --no-cache-dir install scipy
Example 2: clear pip cache
# this doesnt clear it but allows install with no cache
pip install PACKAGE --no-cache-dir