/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Mac에서 Homebrew 설치 후
zsh: command not found: brew
오류 해결vi ~/.zshrc
.zshrc
파일 열어서 아래 입력 후 저장 ➡️esc
+:wq
export PATH=/opt/homebrew/bin:$PATH
- 환경 변수 반영
source ~/.zshrc
brew install cask
brew search 앱 이름
brew install nvm
nvm -v
nvm ls
# 특정 버전의 node.js 사용하기 nvm use <version>
nvm use 16
.nvm
디렉토리를 생성하고, mkdir ~/.zshrc
vi ~/.zshrc
~/.zshrc
에 export 내용을 붙여넣기export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && . "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && . "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
source ~/.zshrc
~
등 글자 깨짐 현상 해결하기
# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts
zsh-syntax-highlighting
: 명령어에 하이라이트 넣어주는 기능
# install
brew install zsh-syntax-highlighting
# setting
vi ~/.zshrc
# 코드 작성 후 esc 누르고 :wq 입력해 주면 저장 완료!
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
brew install git
git --version
git config --list
git config --global user.name "yrkim"
git config --global user.email yrkim@example.com
Finder에서 단축키 command
+ shift
+ .
사용 (숨김 파일 보기/숨기기 toggle)
defaults write com.apple.Finder AppleShowAllFiles YES
killall Finder
defaults write com.apple.Finder AppleShowAllFiles NO
killall Finder