Tom Dickson Asked: 2020-08-25 21:17:28 +0800 CST2020-08-25 21:17:28 +0800 CST 2020-08-25 21:17:28 +0800 CST 为什么 NPM 会安装这么多包? 772 在 Ubuntu 20.04 上部署 Node 和 NPM 时,我注意到当你运行sudo apt install npm它时,它会详细说明它想要与它一起安装的大量依赖项。为什么是这样?当然它不需要所有这些包来运行包管理器吗? apt nodejs npm 1 个回答 Voted Best Answer N0rbert 2020-08-25T22:34:50+08:002020-08-25T22:34:50+08:00 您可以通过提供以下内容来减少已安装软件包的数量--no-install-recommends: sudo apt-get install npm --no-install-recommends 最小 20.04 LTS 系统的比较: sudo apt-get install npm 0 升级,516 新安装,0 删除,0 未升级。 sudo apt-get install npm --no-install-recommends 0 升级,313 新安装,0 删除,0 未升级。
您可以通过提供以下内容来减少已安装软件包的数量
--no-install-recommends
:最小 20.04 LTS 系统的比较:
sudo apt-get install npm
sudo apt-get install npm --no-install-recommends