• centos安装node.js


    centos下安装node.js

    step1:官网下最新的安装包.

        https://nodejs.org/en/

        当时下载的版本是:node-v6.2.1-linux-x64.tar.xz

    step2:放到centos的目录下,我是放/usr/src 下.

    step3:解压文件

        xz -d node-v6.2.1-linux-x64.tar.xz

        之后得到文件 node-v6.2.1-linux-x64.tar

        然后

        tar -xvf node-v6.2.1-linux-x64.tar

    step4:把解压的目录放到你想要的位置. 我是放到/usr/local/share 下

    step5:修改PATH

        vi /etc/profile

        在文件最后加上:

    export NODE_HOME=/usr/local/share  #最后存放的路径

    export PATH=$PATH:$NODE_HOME/bin  #存放路径下的bin目录

    export NODE_PATH=$NODE_HOME/lib/node_module

        :wq    

    step6:source /etc/profile
    step7:node -v,出现版本号就对了

        

  • 相关阅读:
    SonarQube
    Gerrit
    Jenkins
    Jenkins
    GitLab
    GitLab
    GitLab
    centos7配置国内yum源
    CentOS7 ping: unknown host www.baidu.com
    VirtualBox下安装CentOS7系统
  • 原文地址:https://www.cnblogs.com/onewalee/p/5555984.html
Copyright © 2020-2023  润新知