아미(아름다운미소)

라즈베리 파이 주피터 노트북(Jupyter Notebook) 설치하기 본문

서버/리눅스

라즈베리 파이 주피터 노트북(Jupyter Notebook) 설치하기

유키공 2019. 3. 21. 19:09

라즈베리 파이 주피터 노트북(Jupyter Notebook) 설치하기

1. 설치 전 기본 작업
$ sudo apt-get update
$ sudo apt-get install python3-matplotlib
$ sudo apt-get install python3-scipy
$ sudo apt-get install python3-pip
$ sudo pip3 install --upgrade pip
$ sudo reboot

2. 설치
$ sudo pip3 install jupyter

3. 실행
$ jupyter-notebook --ip=[라즈베리파이 IP 주소] --no-browser

예 >
$ jupyter-notebook --ip=192.168.25.57 --no-browser


Comments