Ubuntu Server 18.04 通过 nvm 安装 node

前端之家收集整理的这篇文章主要介绍了Ubuntu Server 18.04 通过 nvm 安装 node前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  • 安装 python(node 很多地方依赖 python2,而 Ubuntu Server 18.04 默认没装 Python2)

sudoaptinstallpython
curl-o-https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh|bash
source~/.bashrc
command-vnvm#安装成功会打印nvm;失败什么也不打印
  • 版本查看

nvmls#查看本地版本
nvmls-remote#查看远程可使用版本
  • 安装 node 8.11.2

nvminstallv8.11.2
#也可以通过镜像安装
NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/nodenvminstallv8.11.2
  • 查看当前使用的 node 版本

~$nvmusenode
Nowusingnodev8.11.2(npmv5.6.0)


【相关阅读】


*** walker ***

原文链接:https://www.f2er.com/ubuntu/349426.html

猜你在找的Ubuntu相关文章