상세 컨텐츠

본문 제목

zsh 경로 설정 (.bash_profile에 경로를 더해도 터미널을 새로 킬 때마다 사라져요)

terminal

by Riella 2021. 5. 8. 16:40

본문

728x90

링크 1, 링크 2

 

macOS Big Sur 같은 경우는 (컴퓨터 상단의 애플 아이콘 -> 이 mac에 관하여 누르면 볼 수 있음)

zsh를 쓰기 때문에 .bashrc, .bash_profile에 적힌 경로들이 영구적으로 반영이 되지 않는다.

그래서 ~/.zprofile에다가 경로를 적어줬다.

vi ~/.zprofile 적고 enter
i 누르면 insert mode

아래 내용은 ~/.zshrc에 있는 경로들을 더해준 다음

matlab을 더해주는 경로이다. command+c command+v

if [ -f ~/.zshrc ]; then
    source ~/.zshrc
fi

export PATH=${PATH}:/Applications/MATLAB_R2021a.app/bin
esc누르기
:wq하고 enter

source ~/.zprofile

관련글 더보기

댓글 영역