无法识别全局安装的 NPM 包

Globally installed NPM packages not recognised

我遇到了系统崩溃。在尝试修复它时,我删除了一些文件(我在这里可能是错的),我删除了其中的 ~/.profile 个文件。

系统还原后,我全局安装的 npm 包无法正常工作。

我卸载了 npm 和 node 并安装了最新版本的 nodejs 16.x,然后重新安装了全局所需的 npm 包,但是它们仍然无法正常工作。某处环境变量(在 .profile 文件中?)丢失了。

如何将全局安装的软件包安装到 运行?

您缺少 PATH 中全局安装的 npm 模块的路径。 this page 中描述了多项修复,其中之一:

Open or create a ~/.profile file and add this line:
export PATH=~/.npm-global/bin:$PATH
Back on the command line, update your system variables:
source ~/.profile