ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Ubuntu] Nodejs 설치
    Programing/Linux 2017. 10. 2. 18:30

    nodejs 를 우분투에 설치하는 법은 어렵지 않다.

    단 두가지의 명령어만 있으면 된다.


    $ curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
    $ sudo apt-get install -y nodejs


    setup_7.x 부분의 숫자부분만

    원하는 버전으로 바꿔서 쓰면된다.




    예를들어 8 버전 노드를 사용하고 싶다면

    $ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
    $ sudo apt-get install -y nodejs

    로 사용 하면 끝!


    ps. 세부 버전 x는 건드릴 필요없다.


    댓글

Designed by Tistory.