YYYEJI

[MacOS] Conda : command not found Error 본문

Python

[MacOS] Conda : command not found Error

YEJI ⍢ 2022. 11. 9. 01:21
728x90


Anaconda를 설치했지만 command not found 에러가 뜨면
아나콘다의 환경변수를 다시 등록해줘야 합니다.

↓↓↓ 환경변수 설정 ↓↓↓

vi ~/.zshrc

 

export PATH="/Users/[User_name]/opt/anaconda3/bin:$PATH"

 

source ~/.zshrc

 

conda --version



◡̈

'Python' 카테고리의 다른 글

[Python] 예외처리  (0) 2022.11.19
[Python] 파일 다루기  (2) 2022.11.19
[Python] 문자열 형식화  (0) 2022.11.04
[Python] Conda에서 package 설치하기  (0) 2022.11.04
[Python] Conda 명령어 정리  (0) 2022.11.03