[Ubuntu] Jupyter notebook 부팅시 자동 실행 예시
2020. 12. 27. 10:26ㆍ꿀팁 분석 환경 설정/Linux 관련 팁
jupyter notebook 설치하고 나서를 가정합니다
vi 편집기를 사용해서 서비스 생성
sudo vi /etc/systemd/system/jupyter.service
서비스 생성에 다가 아래와 같이 작성하기
[Unit]
Description=Jupyter Notebook Server
[Service]
Type=simple
PIDFile=/run/jupyter.pid
User=srlee
ExecStart=/home/srlee/anaconda3/bin/jupyter-notebook ## 이쪽 상황에 맞게 바꿔야 함.
WorkingDirectory=/home/srlee/notebook ## 이쪽 상황에 맞게 바꿔야 함.
[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable jupyter.service
systemctl start jupyter.service
start 하고 나서 상태 확인하기 (active 가 좋은 것임)
sudo systemctl status jupyter.service
참고
goodtogreate.tistory.com/entry/IPython-Notebook-설치방법
728x90
'꿀팁 분석 환경 설정 > Linux 관련 팁' 카테고리의 다른 글
mpi4py 설치 에러 해결하기 (0) | 2021.03.28 |
---|---|
Library "GLU" not found 해결 방법 (0) | 2021.03.28 |
[Ubuntu] Pycharm 설치 및 아이콘 만들기 (0) | 2020.12.27 |
ubuntu18.04 에 R 4.0 설치 및 Rstudio Server 설치하기 (0) | 2020.04.29 |
cuda, cudnn 확인 및 맞는 tensorflow_gpu 버전 설치하기 (3) | 2020.04.22 |