본문 바로가기

STUDY/ECT

Mac 개발환경 설정

🍺 Homebrew

macOS용 패키지 관리자인 homebrew 설치

 

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)"

 

설치 확인

brew doctor

🐱git

brew install git

💻 iTerm2

brew로 설치

brew cask install iterm2

혹은 아래 링크에서 다운로드

 

Downloads - iTerm2 - Mac OS Terminal Replacement

iTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrain

iterm2.com

테마 적용!

 

iTerm2에 Dracular 테마 적용하기

색이 연한 Solarized 테마 대신에 Dracular 테마를 iTerm2에 적용하기로 결정해서 진행합니다. (눈에 잘 보이지가 않아서 가독성이 떨어졌습니다 ㅠ) 빠르게 진행하겠습니다. 테마 클론 아무 곳이나 drac

jojoldu.tistory.com

💻 oh-my-zsh

zsh의 설정 관리 프레임워크

zsh 업데이트 및 zsh-completions설치

brew install zsh zsh-completions

oh-my-zsh설치

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Powerlevel10k

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k

적용이 안되면 ~/.zshrc 파일 수정

ZSH_THEME="powerlevel10k/powerlevel10k"

IDE

📌 Visual Studio Code

brew install --cask visual-studio-code
 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

✔️code명령어로 Visual Studio Code 사용하기

비주얼 스튜디오 코드 실행 후 cmd + shift + p키를 눌러 명령 팔레트 활성화 > Shell Command입력

🐬 MySQL

brew install mysql

brew cask install mysqlworkbench
 

Homebrew를 이용하여 MYSQL 설치 - MAC | devYurim

나는 노트북을 맥을 사용하는데 맥에서는 homebrew 라는 패키지 관리자를 설치하여 사용할 수 있다. 프로그램 설치시 유용하게 활용하고 있다. 개발 환경을 조금 더 편리하게 구성할 수 있어 편리

devyurim.github.io

Node.js

brew install node

 


 

 

Homebrew Formulae

Homebrew’s package index

formulae.brew.sh

 

 

본격 macOS에 개발 환경 구축하기

macOS에서 터미널을 자주 사용하는 개발자를 대상으로 심플하고 깔끔한 테마 위주의 개발 환경을 설정하는 방법을 소개합니다. 이 글을 보고 하나하나 설정하면 어디 가서 발표할 때 고오오급 개

subicura.com