일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 구조체
- C언어 포인터
- Flutter
- 도커
- c# 윈폼
- jupyter lab
- Unity
- vim
- Python
- github
- dart 언어
- HTML
- 플러터
- c# 추상 클래스
- Data Structure
- 깃
- c언어
- docker
- jupyter
- c# winform
- Algorithm
- git
- c#
- 포인터
- C# delegate
- gitlab
- Houdini
- C++
- 유니티
- 다트 언어
Archives
- Today
- Total
nomad-programmer
[Jupyter LAB] 로그인 시 자동 시작 (OSX) 본문
OSX에서 주피터 랩을 자동 시작하려면 애플 스크립트를 만들어 서비스를 띄우는 방식으로 해야 한다.
// 런치 에이젼트로 이동
cd ~/Library/LaunchAgents
// 파일 생성
touch com.jupyter.server.plist
생성한 파일의 내용은 아래의 코드로 채운다.
그 후, 시스템에 로드 시키면 재부팅 할 때마다 자동으로 주피터랩 서버가 실행된다.
// 로드
launchctl load ~/Library/LaunchAgents/com.jupyter.server.plist
Jupyter 암호 설정
생성한 암호를 ~/.jupyter/jupyter_notebook_config.py 의 c.NotebookApp.password 에 넣는다.
// 만약 ~/.jupyter/jupyter_notebook_config.py 파일이 없다면 아래의 명령으로 생성
jupyter lab --generate-config
주피터 커널 생성하려고 한다면 아래 링크 참조
https://nomad-programmer.tistory.com/17?category=859408
'Conda > Jupyter LAB' 카테고리의 다른 글
[Jupyter LAB] 로그인 시 자동 시작 (CentOS8) (0) | 2019.12.02 |
---|---|
[Jupyter LAB] setup (0) | 2019.12.02 |
[Conda/Jupyter LAB] 설치한 Extensions (1) | 2019.11.28 |
[Conda/Jupyter LAB] 로그인 시 자동 시작 (Windows10) (0) | 2019.11.28 |
[Conda/Jupyter LAB] 가상환경 만든 후 커널 생성 및 삭제 (0) | 2019.11.28 |
Comments