code ~/.zshrc
제일 아래에 추가
/Library/Frameworks/Mono.framework/Versions/Current/bin/
/usr/local/share/dotnet/
source ~/.zshrc
zsh 사용시 path가 초기화 되는 경우가 있는데(위의 것이 적용 안될 경우),
bash_profile 사용
.zshrc에
source ~/.bash_profile 추가
code ~/.bash_profile
export PATH=/Library/Frameworks/Mono.framework/Versions/Current/bin:$PATH
export PATH=/usr/local/share/dotnet:$PATH
source ~/.zshrc
which dotnet / which mono로 경로 확인