본문 바로가기
Jupyter Notebook

[Jupyter Notebook] 주피터 시작하기, 기본 명령어

by You_mool 2021. 7. 14.
반응형
pip3 install jupyter notebook

Notebook 두가지 모드

1) 초록색 테두리 : 입력모드(enter)

2) 파란색 테두리 : 명령모드(esc)

Notebook의 2가지 Cell

1) Code cell(esc + Y)

2) Markdown cell(esc + m)

명령어

1) 셀 추가

위의 셀은 esc + a(above)

아래의 셀은 esc + b(below)

2) 셀 삭제

esc + dd(빠르게 눌러야함)

3) 셀 실행

- esc + cmd + enter

- shift + enter

실행 후 다음 셀로 넘어감

반응형