1 실행 jupyter notebook --allow-root 2 # 별첨 # 주피터 노트북 설치 # 우분트 os 업데이트 , 우분트에 파이선 설치 apt-get update apt install python3-pip # 주피터 노트북 설치 pip3 install jupyter # 패스워드 설정 파일 만들기 jupyter notebook --generate-config # 패스워드 설정 jupyter notebook password ncp!@#12345 # 모든 ip에서 접속 되도록 하기 # local host를 * 로 변경 하는 작업 sed -i "s/^# c.ServerApp.ip = 'localhost'/c.ServerApp.ip = '*'/g" ~/.jupyter/jupyter_notebook_config.py # 실행 jupyter notebook --allow-root # 웹브라우저로 접속 : 서버 공인 IP:8888 223.130.133.4:8888 ncp!@#12345 3 Let's become AI experts