[Python] pip 清除缓存

跳过缓存

If using pip 6.0 or newer, try adding the --no-cache-dir option. If using pip older than pip 6.0, upgrade it with pip install -U pip

pip install ... --no-cache-dir

清除缓存

linux

cd ~/.cache/pip
sudo rm -rf *

win

缓存所在文件夹

C:\Users\hanjiale\AppData\Local\pip\cache

你可能感兴趣的:(Python)