MacOS 환경설정
[ Homebrew 설치 ]
$/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Next steps:
- Add Homebrew to your PATH in /Users/ahn/.zprofile:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/ahn/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
- Run `brew help` to get started
- Further documentation:
https://docs.brew.sh
$echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/ahn/.zprofile
$eval "$(/opt/homebrew/bin/brew shellenv)"
homebrew 설치 확인
$ brew -v
[ iTerm2 설치 ]
https://iterm2.com/features.html
$brew install --cask iterm2
[ Xcode 설치 ]
App Store 에서 Xcode 검색 후 설치
[ 맥 CLT(Command Line Tools) 설치 ]
CLT : MacOS용 개발자 툴, 유틸리티 및 컴파일러 설치 해줌(ex: gcc, make, git, svn, clang, cpp….)
$xcode-select --install
[zsh & oh-my-zsh 설치]
zsh : z shell
oh-my-zsh : zsh 설정 관리 프레임워크
# zsh 설치
$brew install zsh
#설치경로 확인
$which zsh
#기본 shell 변경
$chsh -s $(which zsh)
# git wget curl 설치 확인
# oh-my-zsh 설치
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
->zshrc 생성
[ zshrc 설정 ]
https://kiki-100.tistory.com/106
// vim 설정
'42 > 1' 카테고리의 다른 글
norminette3 설치 (0) | 2021.07.19 |
---|---|
norminette2 설치 (0) | 2021.05.23 |
42header (0) | 2021.05.23 |
zsh | zshrc 설정 (0) | 2021.05.23 |