pip uninstall package 后,如果再次安装 package 时, 发现不是新下载的 package, 而是使用的 cache,
1 | [root@unity-004 blender-3d]# pip install -r requirements.txt -i https://pypi.xxxx.com/simple |
如果要不想用 cache 去安装,则是由如下参数–no-cache-dir
1 | pip install -r requirements_local.txt --no-cache-dir |