본문 바로가기

Linux & Ubuntu

Jupyter notebook 테마 변경 & nohup 실행

320x100
320x100

 

 

 

Jupyter notebook의 테마 변경을 통해 원하는 느낌의 화면을 설정해 줄 수 있다.

그리고 회사 서버에서는 백그라운드로 jupyter notebook을 실행해줘야 하는데 이때 nohup 명령어를 쓰면 된다고 한다.

 

내가 정리하고자 하는 내용은 아래와 같다. (이런 기본적인 것도 할 줄 몰랐던 내가 부끄럽다....)

  1. 기존 nohup 명령어 종료
  2. Jupyter notebook 테마 변경
  3. nohup으로 실행

 

사용되는 명령어는 아래와 같다.

# nohup으로 실행되고 있는 프로세스 조회
ps -ef | grep jupyternotebook

# 프로세스 kill
kill 11819

# jupyter notebook 테마 변경
jt -t oceans16 -cellw 70% -T -N

# nohup으로 실행
nohup jupyter notebook --ip=xxx.xxx.x.xx --port=xxxx --allow-root --no-browser --notebook-dir="/home" > /dev/null &

 

 

 

https://joonyon.tistory.com/entry/%EC%89%BD%EA%B2%8C-%EC%84%A4%EB%AA%85%ED%95%9C-nohup-%EA%B3%BC-%EB%B0%B1%EA%B7%B8%EB%9D%BC%EC%9A%B4%EB%93%9C-%EB%AA%85%EB%A0%B9%EC%96%B4-%EC%82%AC%EC%9A%A9%EB%B2%95

 

https://realblack0.github.io/2020/05/13/jupyter-notebook-themes.html

 

https://bio-info.tistory.com/15