Node安装(二进制包)

环境

系统:CentOS 6.7
软件:node-v6.11.0-linux-x64.tar.xz

node安装

  • 下载二进制包
    地址:https://nodejs.org/en/download/

  • 安装

# tar -Jxvf node-v6.11.0-linux-x64.tar.xz
# mv node-v6.11.0-linux-x64 /usr/local/node
  • 配置
  # vim /etc/profile
  export PATH=/usr/local/node/bin:$PATH
  
  # source /etc/profile

你可能感兴趣的:(Node安装(二进制包))