Post

[ubuntu] git, node.js, yarn 설치하기

git 설치

1
sudo apt install git

버전 확인

1
git --version

node.js 설치

1
2
3
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install curl


이 링크에서 node 버전 확인 후 아래 명령어에서 원하는 버전 입력

1
2
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash --
sudo apt-get install -y node.js

버전 확인

1
2
node -v
npm -v

Yarn 설치

1
sudo npm install -g yarn

버전 확인

1
yarn -v


[Linux] 우분투 Git 설치 / 다운로드 & 사용 방법
[Ubuntu] 우분투에 Nodejs와 Yarn 설치

This post is licensed under CC BY 4.0 by the author.