여백에 도장 찍기

환경변수 영구설정 본문

Mac 개발환경

환경변수 영구설정

Linzyseo 2022. 1. 4. 11:13

EXPORT 를 통해 환경변수 설정해도 영구적으로 설정되지 않는다.

~/.bash_profile 파일을 생성해서 설정해주어야 한다.

 

1. ~/.bash_profile 설정

 # 최초 설정 시 bash_profile 생성
 vi ~/.bash_profile
 
 # source 명령어를 통해 수정된 내용 적용
 source ~/.bash_profile

 

~/.bash_profile에는 설정이 되어있으나 환경변수가 먹히지 않는 경우가 있다. 

터미널이 zsh을 바라보고있기 때문에 zsh에서 bas_profile을 포함하게 설정해줘야한다.

 

2. ~/.zshrc 설정 

# zshrc 생성 및 bash_profile 포함하도록 설정 
vi ~/.zshrc
source ~/.bash_profile

# 적용
source ~/.zshrc

'Mac 개발환경' 카테고리의 다른 글

Homebrew 설치  (0) 2022.01.04
Comments