Mac에서 Jupyter 설치하기

snooby·2022년 11월 18일
0

⚒ Python

목록 보기
9/14
post-thumbnail

Mac에서 Jupyter를 설치하는 방법은
1. pip 사용
2. brew 사용
2가지 방법이 있다.
두 방법 모두 우선적으로 homebrew의 설치가 필요합니다.
homebrew 설치방법은 여기에 잘 정리해두었으니 확인해보세요~

1. pip으로 Jupyter 설치하기

# python 설치
brew install python

# 파이썬 확인
python -V

# 주피터 노트북 설치
pip3 install --upgrade pip
pip3 install jupyter

# 주피터 실행
jupyter notebook

2. brew로 Jupyter 설치하기

# 주피터 노트북 설치
brew install jupyter

# 주피터 실행
jupyter notebook
profile
데이터를 가치있게 다루고 싶은 개발자 🐥

0개의 댓글