1-Lab2-NCP-AI-2026 # 푸티 설치 https://putty.org/index.html # 우분트 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 쥬피터 노트북 설치 완료 # AI 개발을 위한 다양한 라이브러리 설치 # 서버 로그인 pip3 install tensorflow pip3 install matplot pip3 install pandas pip3 install scikit-learn pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu