伺服器配置jupyter步驟
阿新 • • 發佈:2018-12-12
1. 安裝jupyter
pip install jupyter
2. 生成配置檔案
jupyter notebook --generate-config
3. 開啟python,生成祕鑰
from notebook.auth import passwd
passwd()
然後設定登入密碼,生成祕鑰,並複製你的祕鑰
祕鑰開頭:sha1……
4. 修改配置檔案
vim ~/.jupyter/jupyter_notebook_config.py
在開啟的檔案中,找到以下4處,去掉註釋,進行修改
c.NotebookApp.ip='*' # 就是設定所有ip皆可訪問 c.NotebookApp.password = u'sha:ce... # 剛才複製的那個密文' c.NotebookApp.open_browser = False # 禁止自動開啟瀏覽器 c.NotebookApp.port =8888 # 隨便指定一個埠
5. 在伺服器端啟動jupyter
jupyter notebook
6. 在遠端連線的電腦上輸入伺服器ip:8888 就好了。(注意此時網站開啟的資料夾位置就是你在伺服器端啟動jupyter的位置),下面就可以愉快的使用jupyter啦。