配置Node.js环境中的Linux 环境变量
http://jingyan.baidu.com/article/25648fc18ee5bd9190fd0058.html
思考 .bashrc和profile的区别 都是设置环境变量?
设置global路径为用户目录
npm config set prefix ~/npm
将~/npm/bin路径加到PATH变量中
echo -e '\nexport PATH=~/npm/bin:$PATH' >> ~/.bashrc
重新载入.bashrc
source ~/.bashrc
网友评论