📌  相关文章
📜  npm 错误!安装 Angular cli 时的路径 usr local lib nodejs node-v10.15.3-linux-x64 lib node_modules - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:45.154000             🧑  作者: Mango

代码示例1
It's not recommended to use sudo with npm install, follow the steps from npmjs official docs instead :)

Make a directory for global installations:

mkdir ~/.npm-global

Configure npm to use the new directory path:

npm config set prefix '~/.npm-global'

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

Test: Download a package globally without using sudo.

npm install -g typescript

    Source: https://docs.npmjs.com/getting-started/fixing-npm-permissions