주피터
-
Jupyter notebook 서버설정, 원격 접속 설정환경&시스템 구축/개발환경 2021. 8. 19. 13:47
1. 방화벽 해제 # ubuntu sudo ufw allow 8888 # centos sudo firewall-cmd --parmanent --add-port=8888/tcp 2. config 파일 생성 jupyter notebook --generate-config 위 코드 실행시 /home/{username}/.jupyter 경로 또는 /root/.jupyter 경로에 jupyter_notebook_config.py 파일이 생성됩니다. 3. 서버 비밀번호 생성 #파이썬 프롬프트 환경 실행 ipython #비밀번호 생성 from notebook.auth import passwd passwd() #Enter password: 본인이 설정할 jupyter notebook 비밀번호 입력 #Verify pass..