我想在 Stackoverflow 中发布这个问题,但我决定在这里发布它,因为它可能取决于操作系统。当我使用pip
安装 python 包时,第一次从pypi下载它:
pip install numpy
Collecting numpy
Downloading https://files.pythonhosted.org/packages/de/37/fe7db552f4507f379d81dcb78e58e05030a8941757b1f664517d581b5553/numpy-1.15.4-cp27-cp27mu-manylinux1_x86_64.whl (13.8MB)
100% |████████████████████████████████| 13.8MB 792kB/s
Installing collected packages: numpy
Successfully installed numpy-1.15.4
当我将其卸载并重新安装时,该软件包未下载。相反,使用缓存版本来安装它:
pip install numpy
Collecting numpy
Using cached https://files.pythonhosted.org/packages/de/37/fe7db552f4507f379d81dcb78e58e05030a8941757b1f664517d581b5553/numpy-1.15.4-cp27-cp27mu-manylinux1_x86_64.whl
Installing collected packages: numpy
Successfully installed numpy-1.15.4
有时,安装会损坏,或者在安装过程中出现问题。所以我需要再次重新安装相同的包。但由于有缓存版本,重新安装将使用相同的损坏版本。因此,我需要删除该缓存版本才能进行全新安装。
出于这个原因,我的问题是:缓存的 python 包存储在 Ubuntu 中的什么位置?
感谢@muru,我在Stackoverflow中找到了答案。我引用它:
对于 Ubuntu,它位于:
更多信息可以在这个链接中找到