npm全局安装后“command not found”的解决方案

Root权限问题的解决

需要给node_module目录相应的权限

sudo chown -R $USER /usr/local/lib/node_modules 

一般来说是PATH配置的问题。可以使用命令

npm root -g

来查看全局安装到的目录。如返回结果为/usr/local/Cellar/node/5.3.0/lib/node_modules
再在配置文件~/.zshrc(我的是zsh)中添加以下内容,

export PATH = "$PATH:/usr/local/Cellar/node/5.3.0/lib/node_modules"

最后让配置文件生效。

source ~/.zshrc

你可能感兴趣的:(npm全局安装后“command not found”的解决方案)