Jupyter LAB에 대한 바로 가기 키 할당: Run Sellected Cell and All Below/Run All Cells
5669 단어 JupyterLab
배경
자주 사용하는 Run All Below에 바로 가기 키가 할당되어 있지 않기 때문에 작성 방법을 찾았습니다.
■ Run All Below ⇒ Command+Shit+Enter (선호로 선택)
Jupyter Notebook에서는 간단하게 작성할 수 있습니다만, JupyterLab에서는 그다지 쉽지 않습니다.
다른 명령의 키 할당도 마찬가지로 가능합니다.
익숙해지면 어렵지 않습니다.
추가
■ Run All Cells ⇒ Command+Option+Enter
참고문헌
JupyterLAB에서 바로 가기 추가에 대한 기사
다음 두 블로그를 참고했습니다.
Jupyter Lab 바로 가기 목록 (Windows) 및 키 할당 변경 방법
Expose Run Selected Cell and All Below handle for keyboard shortcut creation#5371
Jupyter Notebook 바로가기 변경 방법
Notebook은 쉽게 만들 수 있습니다.
Jupyter notebook 바로 가기 설명
【1】 변경하는 장소
메뉴에서
Setting --> Advanced Settings Editor--> New Notebook
를 선택합니다.
System Defaluts에 수많은 바로 가기가 표시됩니다.
【2】코드를 기입
User Preference에 코드를 기입-->Save 버튼(오른쪽 위의 작은 버튼)
syntax Error등이 있는 것처럼 오른쪽 하단에 표시되므로 No Error가 나올 때까지 깨웁니다.
Run Selected Cell and All Below 란에 바로 가기 키가 나타난다(재기동 불필요: 그대로 나온다
다음에서 복사를 할 수 있습니다.
{
"shortcuts": [
{
"command": "notebook:run-all-below",
"keys": [
"Accel Shift Enter"
],
"selector": ".jp-Notebook:focus"
}
]
}
코드 세부정보
"keys"
Accel (Mac에서는 Command 키)
Accel Shift Enter
그리고 그대로 박는다 (Jupyter Notebook과 같은 하이폰 등은 불필요)
"command"와 "selector"
다른 유사한 바로 가기 키를 흉내내십시오.
셀렉터를 올바르게 넣는 것이 중요합니다.
【3】추가
Run All Cells
추가 할 때 쉼표 (,)를 넣는 것이 포인트
자주 사용하는 run-all-cells를 넣어 보았습니다. MAC의 Option Key는 Alt
},
{
{
"shortcuts": [
{
"command": "notebook:run-all-below",
"keys": [
"Accel Shift Enter"
],
"selector": ".jp-Notebook:focus"
},
{
"command": "notebook:run-all-cells",
"keys": [
"Accel Alt Enter"
],
"selector": ".jp-Notebook:focus"
}
]
}
이상
Reference
이 문제에 관하여(Jupyter LAB에 대한 바로 가기 키 할당: Run Sellected Cell and All Below/Run All Cells), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hiroshim021/items/8e31f0576fc493b26d86텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)