[Ubuntu] 우분투에 Nodejs와 Yarn 설치하기
·
프로그램/LINUX
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: Ubuntu (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 ubuntu 환경에서 NodeJS와 Yarn 설치를 포스팅하려고 합니다. 리눅스(ubuntu) 환경에 접속하기 # apt를 최신으로 업데이트 apt-get update -y # curl을 사용하기 위해 설치 apt-get install curl -y # nodejs(npm) 설치 curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -- apt-get install -y node.js node, npm 버전 확인하기 # node 버전 확인하기 node -v # npm 버전 확인하기 np..