Jupyter Notebook
실행
윈도우즈에서 Jupyter Notebook
명령 프롬포트에서 Jupyter Notebook
입력
인터페이스
Edit Mode (초록색) 에서 ESC Key를 누르면 Command Mode(파란색) 된다.
세부 기능
Ctrl + Enter : 셀 실행
Interrupt, Restart, ... : 셀 실행 취소
Command Mode에서 단축키
단축키
Command Mode (Press Esc
to enable)
Y
: to code
M
: to markdown
A
: instert cell above
B
: insert cell below
X
: cut selected cells
C
: copy selected cells
D
, D
: delete selected cells
jupyter notebook 설치
anaconda 설치 시 jupter notebook은 자동으로 설치되어 있다.
가상환경 새로 만들 때 설치가 필요하다.
conda install jupyter notebook
주피터 확장기능 설치
conda install -c conda-forge jupyter_contrib_nbextensions
확장을 활성화 하려면 Nbextensions 탭을 클릭하거나 http://localhost:8888/nbextensions 에서 확인 할 수 있다.
'Python > Basic programming' 카테고리의 다른 글
GITHub push-pull 과정에서 오류 해결 방법 (0) | 2020.01.20 |
---|---|
GIT (0) | 2020.01.20 |
마크다운 문법 (0) | 2020.01.20 |
아나콘다 설치 및 설정 (0) | 2020.01.20 |
필수 파이썬 라이브러리 간단 용도 정리 (0) | 2020.01.20 |