今年才毕业的程序猿,努力入门中。
平时开发用linux,自然少不了使用nodeJs, 直接install nodeJs, 也可以,但是可能会对以后开发过程中版本变迁产生影响,所以最好还是使用nvm安装nodeJs。
安装过程:
$ curl https://raw.githubusercontent.com/creationix/nvm/v0.19.0/install.sh | bash
$ source ~/.nvm/nvm.sh
$ nvm ls-remote
// select nodeJs version
$nvm istall $version
$ nvm use $version
安装完成之后需要在启动terminal时自动执行source,使得环境变量生效。
在 ~/.bashrc, ~/.bash_profile, ~/.profile, 或者 ~/.zshrc 文件添加以下命令:
$ source ~/.nvm/nvm.sh