Skip to content

Jupyter #
Find similar titles

Structured data

Programming Language
Python
Javascript
URL

IPython Notebook 3.0이 다른 언어들(bash, Julia, R)을 지원하면서 Jupyter로 이름이 바뀌다.

#

단축키 #

  • Cmd + Shift + P: shortcut help
  • Command mode
    • H: help
    • L: lines display toggle
    • J, K: cell up and down
    • A, B: insert cell
    • M, Y: markdown or code
    • DD: delete cell
    • F: find and replace
    • O: toggle output
  • Writing mode
    • Shift + Tag: object help
    • Ctrl + Shift + -: split cell
  • Select multiple cells
    • Shift + J, K
    • copy & paste

다중 커널 #

커널 관련 명령

$ jupyter kernelspec list
Available kernels:
  python3 /Users/{USER}/Library/Jupyter/kernels/python3
  python2 /usr/local/share/jupyter/kernels/python2

$ jupyter kernelspec remove python3

$ python3 -m ipykernel install --user

이미 설치된 커널의 환경을 바꾸고 싶은 경우, kernelspec 경로의 kernel.json 파일을 수정한다.

{
 "argv": [
  "python3",
  "-m",
  "ipykernel_launcher",
  "-f",
  "{connection_file}"
 ],
 "display_name": "Python 3",
 "language": "python"
}

설치 #

Windows #

Windows용 anaconda설치 https://www.continuum.io/downloads#_windows 후, jupyter설치

윈도우 명령프롬프트에서

conda install jupyter

OS X #

pip로 설치

pip install jupyter

관련 모듈 #

관련 논문 #

관련 포스트 #

관련 정보 #

Incoming Links #

Related Articles #

Related Codes #

[Codes] About #

Suggested Pages #

web biohackers.net
0.0.1_20140628_0