일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- github
- 도커
- docker
- C언어 포인터
- Flutter
- c# 추상 클래스
- HTML
- jupyter
- jupyter lab
- C++
- Houdini
- Data Structure
- c# 윈폼
- 깃
- 다트 언어
- Algorithm
- vim
- dart 언어
- Python
- 유니티
- c언어
- 구조체
- C# delegate
- Unity
- 포인터
- gitlab
- c# winform
- 플러터
- git
- c#
- Today
- Total
목록jupyter lab (4)
nomad-programmer
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_not..
// jupyterLAB 설치 conda install -c conda-forge jupyterlab // jupyter config file 생성 jupyter lab --generate-config
// font jupyter labextension install @deathbeds/jupyterlab-fonts --no-build jupyter labextension install @deathbeds/jupyterlab-font-anonymous-pro --no-build jupyter labextension install @deathbeds/jupyterlab-font-dejavu-sans-mono --no-build jupyter labextension install @deathbeds/jupyterlab-font-fira-code --no-build // cell tags jupyter labextension install @jupyterlab/celltags --no-build // git..
대상의 명령어 집합들이 실행되어 주피터 노트북이 실행되는 것이다. 하지만 노트북이 아니라 jupyter LAB을 실행할 것이니 때문에 명령어를 바꿔준다. // 변경 전 명령어 C:\Anaconda3\python.exe C:\Anaconda3\cwp.py C:\Anaconda3 C:\Anaconda3\python.exe C:\Anaconda3\Scripts\jupyter-notebook-script.py "%USERPROFILE%/" // 변경 후 명령어 C:\Anaconda3\python.exe C:\Anaconda3\cwp.py C:\Anaconda3 C:\Anaconda3\python.exe C:\Anaconda3\Scripts\jupyter-lab-script.py "%USERPROFILE%/" /..