취코, 취하다 코딩에~

우분투에서 node 설치 본문

프로그래밍/리눅스

우분투에서 node 설치

drinkcode 2018. 4. 28. 10:26
# 데비안 계열(우분투)에서 일반 사용자 계정인 경우,
$ sudo apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get install -y nodejs

# 데비안 계열(우분투)에서 루트인 경우,
$ apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_6.x | bash -
$ apt-get install -y nodejs


'프로그래밍 > 리눅스' 카테고리의 다른 글

우분투 마크다운 설치  (0) 2018.04.28
.vimrc 설정  (0) 2018.04.28
리눅스에서 카카오톡 설치(펌)  (0) 2018.04.11
elementary 유용한 도구  (0) 2018.04.10
wget 사용법  (0) 2018.02.11
Comments