Mac에서는 윈도우와 달리 conda prompt를 terminal이 대신합니다.
아나콘다 설치 직후에, 터미널에서 jupyter notebook/ jupyter lab을 실행하려 하면 다음과 같은 오류 메시지가 나타납니다.
zsh: command not found: jupyter
저는 다음으로 이를 해결했습니다.
step1. brew 설치 : brew.sh/index_ko
아직 저에게는 낯설지만, terminal에서 brew라는 것을 설치해줍니다.
각종 라이브러리 설치 시에도 brew가 필요했던 기억으로 보아, 어플로 실행시킬 수 있더라도 설치해두는 것이 좋은 것 같습니다.
위 url을 따라가서 나오는 스크립트를 터미널에 입력해주면, 암호 입력 후 설치가 진행됩니다.
step2. brew로 jupyter 설치
brew가 설치되었다면, 다음 명령어로 jupyter를 설치할 수 있습니다.
brew install jupyter
step3. terminal 재실행
기존 terminal 창을 종료하고 jupyter notebook 또는 jupyter lab을 입력합니다.
Reference>
superuser.com/questions/1493257/cannot-open-jupyter-notebook-in-the-new-zsh-shell-in-macos
'머신러닝 > 오류 모음집' 카테고리의 다른 글
Colab 초기 설정 튜토리얼 (0) | 2022.06.06 |
---|---|
Adam Optimizer (0) | 2021.03.01 |
Word cloud 원하는 색으로 꾸미기 (word cloud customize color) (0) | 2021.02.21 |
Mac에서 Matplotlib 사용 시, 한글 깨짐 해결 (0) | 2021.02.18 |
pandas로 용량이 큰 csv 파일 읽어오기(kernel dies reading csv file) (0) | 2021.02.15 |