관리 메뉴

웹개발자의 기지개

[Python] jupyter notebook 시작 실행위치 변경하기 본문

인공지능/데이터분석

[Python] jupyter notebook 시작 실행위치 변경하기

http://portfolio.wonpaper.net 2022. 9. 6. 22:35

1. 주피터 노트북을 실행할때 시작위치 변경하기

jupyter notebook f:\

 

 

2. 환경설정 파일에서 설정하기

 

(1)  jupyter_notebook_config.py 파일만들기

Prompt 실행창에서 jupyter notebook --generate-config

해당 파일의 위치를 파악한다.

(2) jupyter_notebook_config.py 파일내  c.NotebookApp.notebook_dir 소스 수정한다.

 

 

 

참고 : https://sosomemo.tistory.com/58

Comments