jupyter notebook, markdown

svenskpotatis·2023년 8월 28일
0

markdown

  • ---: 구분선 표시

jupyter notebook

  • module 설치: !conda install -y pandas

  • cell 실행: shift + enter

  • esc + m: markdown

  • esc + a: 위에 셀 추가

  • esc + b: 아래에 셀 추가

  • esc + o: output 닫기

  • Docstring: shift + tab

  • 목차 보기:

    pip install jupyter_contrib_nbextensions && jupyter contrib nbextensions
    
    jupyter contrib nbextensions install --user
    
    jupyter nbextensions_configurator enable --user
    
    # 설정 후 jupyter notebook 들어가서 nbextension 탭 -> table of contents 체크
    
    • !pip list | grep 모듈 이름: 설치된 모듈 체크

0개의 댓글