일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- gitlab
- Flutter
- 포인터
- jupyter
- git
- c#
- docker
- Data Structure
- C# delegate
- Houdini
- Unity
- Python
- github
- C언어 포인터
- c언어
- 도커
- HTML
- 다트 언어
- 유니티
- 깃
- jupyter lab
- 구조체
- c# 추상 클래스
- c# winform
- C++
- Algorithm
- 플러터
- c# 윈폼
- dart 언어
- vim
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
[Jupyter LAB] 가상환경 만든 후 커널 생성 및 삭제
codna create --name <가상환경이름> python=<파이썬버전> anaconda 입맛에 맞게 가상 환경을 만든다. 그 후 jupyterlab에서 그 가상환경을 쓸 수 있도록 추가해주면 된다. // 커널을 생성하고자하는 가상환경으로..
nomad-programmer.tistory.com
'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