-
터미널 재부팅 시 source ~/.bash_profile 재실행해야하는 문제 해결법.에러 2020. 2. 16. 16:08
.bash_profile에서 환경 변수를 설정하고 source ~/.bash_profile를 실행하면 설정이 잘 적용되는데, 터미널을 껐다 킬때마다 설정이 초기화돼서 매번 source ~/.bash_profile을 실행해야하는 문제가 발생했다.
구글링을 해보니 나와 동일한 문제가 발생한 사람이 올린 질문 글이 있었다!
원인은 oh-my-zsh에 있었다.
oh-my-zsh를 사용할 경우,
if [ -f ~/.bash_profile ]; then . ~/.bash_profile fi
위 코드를 ~/.zshrc의 끝에 추가해줘야 터미널에 환경 변수가 잘 적용된다.
'에러' 카테고리의 다른 글
TS 파일 컴파일 후 실행 시 절대 경로 인식 못하는 문제 해결 (tsconfig-paths) (0) 2021.07.01 Truncated time values using TIMEDIFF... (0) 2020.07.11 (Mac) Permissions 0644 for 'isclass.pem' are too open. 에러 해결 방법 (0) 2020.06.01 command not found: mysql 해결법 - mysql-client 설치 (0) 2020.02.28 command not found: mysql_secure_installation (0) 2020.01.07