# WSL에서 Jupyter notebook 윈도우 브라우저로 열기

## Jupyter notebook 설치
```shell
pip3 install jupyter
```

## Jupyter notebook 설정파일 생성
```shell
jupyter notebook --generate-config
```

## 아래의 항목 False로 변경
```shell
c.NotebookApp.use_redirect_file = False
```

## 환경변수 등록하기
```shell
echo "export BROWSER='<자신이사용하는 브라우저 경로>'" >> <쉘설정파일 경로>

예시)
echo "export BROWSER='/mnt/c/Program Files (x86)/Naver/Naver Whale/Application/whale.exe'" >> ~/.zshrc
```
+ 자신이 주로 사용하는 브라우저의 경로로 설정 (ex. chrome.exe)
+ 자신이 사용하는 쉘의 설정파일로 변경 (ex. bashrc)

