코딩/Javascript

220525 TIL 개발환경 셋팅(Mac)

AMD만세 2022. 5. 25. 18:19

1. brew 설치

https://brew.sh/

 

Homebrew

The Missing Package Manager for macOS (or Linux).

brew.sh

맥 터미널에서 다음을 입력

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

   

   

    ※ Formulae와 Casks

-> Furmulae는 콘솔용 패키지. Cask는 데스크탑용 패키지(LaunchPad에 추가된다)

 

    ※ brew 명령어

-> brew search [검색할 패키지명]

     brew install [--cask (*cask의 경우)] [설치할 패키지명]

     brew remove [삭제할 패키지명]

 

2. iTerm 설치 (다양한 기능이 포함된 터미널)

     ($는 무시한다)

$ brew install --cask iterm2

    ※ Mac M1용 명령(220525 기준으로 인텔칩도 먹힘)

    (<USER_ID>에 PC명 입력 // password 입력 나오는데 로그인 때 필요한 비밀번호 치면 됨. 비밀번호 표시 안되니 그냥 감으로 ㄱ)

$ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/<USER_ID>/.zprofile
$ eval "$(/opt/homebrew/bin/brew shellenv)"

 

    ※ zsh 설치(다양한 기능이 포함된 Shell)

$ brew install zsh
$ which zsh //zsh 설치경로
$ chsh -s [zsh 설치경로]     // 기본 쉘로 지정

    (iTerm 설치 후에는 iTerm에서 진행한다.)

3. git 설치

$ brew install git

    ※ git 계정 설정

$ git config --list
$ git config --global user.name ['계정이름']
$ git config --global user.email ['계정이메일']
$ git config --global core.autocrlf true (*windows의 경우 commit시 \r\n 에서 \r 제거함)
$ git config --global core.autocrlf input (*mac의 경우 commit시 \n 에서 \n 제거함)
$ git init

4. Visual Studio Code 설치

$ brew install --cask visual-studio-code

5. NVM 설치

$ brew install nvm

6. Chrome 설치

https://www.google.co.kr/chrome/?brand=IBEF&gclid=Cj0KCQjwhLKUBhDiARIsAMaTLnFUjmx3aa9cs7qI-2tZTrf4UAytCsiupvaRL2E05FD04yDlRLyEjvAaAuoOEALw_wcB&gclsrc=aw.ds

7. Docker 설치(가상화 서버)

https://www.docker.com/get-started/

8. Postman 설치(API 테스트)

https://www.postman.com/