1 # GPU 서버에 분석 환경 만들기 apt-get update apt install python3-pip pip3 install jupyter pip3 install jupyter jupyter notebook --generate-config jupyter notebook password 2 vi .jupyter/jupyter_notebook_config.py # 변경전 c.ServerApp.ip = 'localhost' 변경후 c.ServerApp.ip = '*' 3 jupyter notebook --allow-root 웹프라우저로 접속 공인 ip : 8888 4 # 서버 중지하고 애플리케이션 설치하기. 컨트롤 C Shut down this Jupyter server (y/[n])? y [C 2024-03-05 15:02:11.174 ServerApp] Shutdown confirmed [I 2024-03-05 15:02:11.175 ServerApp] Shutting down 5 extensions 5 # AI 개발을 위한 라이브러리 설치 pip3 install tensorflow pip3 install matplot pip3 install pandas pip3 install scikit-learn