第十章 通过 NVM 安装 Node.js
该文章根据 CC-BY-4.0 协议发表,转载请遵循该协议。
本文地址:https://fenying.net/book/minicentos-handbook/10.install-nodejs/
本章通过 NVM 安装 Node.js 的最新稳定版本。
安装
1mkdir ~/git
2cd ~/git
3git clone https://github.com/creationix/nvm.git
4source ~/git/nvm/nvm.sh
5nvm install stable
6echo "source ~/git/nvm/nvm.sh" >> ~/.bash_profile
现在可以测试下 Node 了:
1node -v
comments powered by Disqus