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
'Language > Python' 카테고리의 다른 글
[Python] 정적 메소드 staticmethod, classmethod (0) | 2021.03.27 |
---|---|
[Python] pickle 파일 module '__main__' has no attribute 'something' (0) | 2020.11.22 |
[Pipenv] Python 3.7 was not found on your system (0) | 2020.11.19 |
많이 쓰이는 pip 명령어 (0) | 2020.11.12 |
파이썬 sorted() 함수 사용방법 (0) | 2020.06.02 |