赞
踩
jupyter notebook --generate-config
cd anaconda/bin
./python
from notebook.auth import passwd
passwd() 生成密钥
vim ~/.jupyter/jupyter_notebook_config.py
将下面这段代码加入到config中
c.NotebookApp.ip = ‘*’ # 允许访问此服务器的 IP,星号表示任意 IP
c.NotebookApp.password = u’sha1:xxx:xxx’ # 之前生成的密码 hash 字串, 粘贴进去
c.NotebookApp.open_browser = False # 运行时不打开本机浏览器
c.NotebookApp.port = 8890 # 使用的端口,随意设置
c.NotebookApp.enable_mathjax = True # 启用 MathJax
c.NotebookApp.allow_remote_access = True #允许远程访问
c.NotebookApp.notebook_dir = ‘/home/deepblue/xyf_work/’ # 设置默认工作目录
设置password
如果失败了:
jupyter notebook
IP:端口号,端口号config里设置的。Ip为服务器
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。