1 Ipython 설치
pip install ipython
ipython을 사용하여 ipython 시작
ipython 노트북을 사용하여 노트북 시작
구문: ipython profile create <생성하려는 서버 이름> 예:
ipython profile create myserver
이때 터미널은 생성된 파일의 위치를 출력하므로 이 위치를 기억해두세요
3.1 openssl 인증 구성
이때 출력으로 생성된 SHA의 값은 출력을 기억해 주시기 바랍니다
향후 사용을 용이하게 하기 위해 이 때 Mycert.pem을 이동할 수 있습니다. 이때 ipython에 대한 인증서를 ipython 노트북 폴더에 저장하여 관련된 내용을 정리합니다.
mv mycert.pem .ipython
3.2 구성 파일 수정
c = get_config() # Kernel config c.IPKernelApp.pylab = 'inline' # if you want plotting support always # Notebook config c.NotebookApp.certfile = u'/home/XXX/.ipython/mycert.pem' ##认证的位置 c.NotebookApp.ip = '*' c.NotebookApp.open_browser = False c.NotebookApp.password = u'sha1:XXXX' ## 认证输出的sha值 # It's a good idea to put it on a known, fixed port c.NotebookApp.port = 9999