오히려 좋아..

상황이 나쁘게만 흘러가는 것 같을 때 외쳐보자.. .

궁금한 마음으로 포트폴리오 보기

Language/Python

Mac Terminal 에서 conda 안될 때

junha6316 2020. 11. 17. 12:01

Mac Terminal에서 conda 명령어가 안될 때 해야되는 일

1. 아래 명령어를 통해 conda를 환경 변수로 추가해준다. 

export PATH="/Users/username/anaconda3/bin:$PATH"

# 이거 또는 아래 두개

source /etc/profile 
source ~/.bash_profile 

 

 

이렇게 하고 나서 conda activate를 실행했는데 아래와 같은 에러가 뜬다면 

 

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.

To initialize your shell, run

 

다음의 명령어를 넣어준다.

cd ~
#홈으로 이동하고

source ~/anaconda3/etc/profile.d/conda.sh

 

MAC OS 환경변수 설정하기
https://sike6054.github.io/blog/etc/fourth-post/

CommandNotFoundError
https://somjang.tistory.com/entry/Anaconda-CommandNotFoundError-Your-shell-has-not-been-properly-configured-to-use-conda-activate-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95