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

猜你喜欢

转载自blog.csdn.net/weixin_43742643/article/details/113547401
pip