Mac에서 Jupyter를 설치하는 방법은
1. pip 사용
2. brew 사용
2가지 방법이 있다.
두 방법 모두 우선적으로 homebrew의 설치가 필요합니다.
homebrew 설치방법은 여기에 잘 정리해두었으니 확인해보세요~
# python 설치
brew install python
# 파이썬 확인
python -V
# 주피터 노트북 설치
pip3 install --upgrade pip
pip3 install jupyter
# 주피터 실행
jupyter notebook
# 주피터 노트북 설치
brew install jupyter
# 주피터 실행
jupyter notebook