파이썬3/jupyter
jupyterlab 시작위치 설정 (linux)
TTSR
2022. 1. 10. 15:46
728x90
반응형
/user명/.jupyter 경로에 jupyter configuration 파일이 존재한다.
ls -a
cd .jupyter/
vim jupyter_notebook_config.py
여기에 들어간 후에 less를 한 후에 슬래시 (/)를 누르고 아래를 입력해 찾는다.
c.NotebookApp.notebook_dir
# 주석이 돼있을텐데 이것을 제거하고 원하는 시작위치로 경로를 바꿔준다.
이후 jupyter lab --config jupyter_notebook_config.py를 실행하면 된다.
jupyter lab --config jupyter_notebook_config.py
728x90
반응형