-
Jupyterhub - nbviewer 연동하기etc. 2021. 1. 19. 13:08
aws ubuntu instance에 jupyterhub 구축 후,
share 디렉토리의 노트북 파일들을 더 편리하게 공유하기 위해 nbviewer를 연동했습니다.
nbviewer 레포를 clone하고 해당 디렉토리로 이동해 설치 및 설정을 계속합니다.
git clone https://github.com/jupyter/nbviewer.git cd nbviewer
pip install -r requirements.txt pip install -r requirements-dev.txt npm install invoke bower invoke less -d
설치를 완료한 후 아래 명령어로 설정 파일을 생성합니다.
python -m nbviewer --generate-config vi nbviewer_config.py
쉘 상태에 관계 없이 백그라운드에서 실행시키고, 로그 파일을 남기지 않기 위해 아래 명령어를 입력합니다.
nohup python -m nbviewer --no-cache --debug --port=9000 --localfiles="/home/data/share" 1>/dev/null 2>&1 &
'etc.' 카테고리의 다른 글
Github Auth 정책 업데이트 : Personal Access Token 사용하기 (1) 2021.08.16 Airflow, Jupyterhub에 Google OAuth 적용하기 (0) 2021.06.09 EC2 -Ubuntu Docker환경에서 jupyterhub 설치하기 (0) 2020.12.25 Synology Docker 기반으로 Hadoop 설치하기 (0) 2020.12.20 Ubuntu에서 bash: ll: command not found 에러 해결 방법 (0) 2020.12.20