jupyter notebook --generate-config
复制代码
方案:1、打开文件 jupyter_notebook_config.py (C:\Users\Administrator.jupyter 中)
2、找到 # c.NotebookApp.browser = ''''
3、添加:
import webbrowser
webbrowser.register("chrome", None, webbrowser.GenericBrowser(u"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"))
c.NotebookApp.browser = 'chrome'
(注意将#号删除,注意是\双斜线,注意事项,不支持中文,可以有空格)
1、(win+r)打开 cmd 输入命令:jupyter notebook --generate-config
2、找到文件 jupyter_notebook_config.py (C:\Users\Administrator\.jupyter 中)
3、打开该文件 找到 #c.NotebookApp.notebook_dir = '' 并添加(将其修改为):c.NotebookApp.notebook_dir = u'D:\\python' (注意将#号删除,注意是\\双斜线,注意事项,不支持中文,可以有空格)
1、进入工作目录(如:“D:\python”)
2、按着 shift 键 点击鼠标右键 选择 “在此处打开Powershell窗口(S)”
3、进入Powershell窗口输入 “jupyter notebook”
vim ~/.jupyter/jupyter_notebook_config.py
修改以下三个节点的配置,并把开头的 # 注释去掉
c.NotebookApp.ip = '*' # 开启所有的IP访问,即可使用远程访问
c.NotebookApp.open_browser = False # 关闭启动后的自动开启浏览器
c.NotebookApp.port = 8888 # 设置端口8888,也可用其他的,比如1080,8080等等
复制代码
jupyter notebook
复制代码
在浏览器输入http://hostip:8888,hostip可以是本地地址,局域网地址,也可以是远程服务器地址(比如阿里云或者AWS或者其他云服务器厂商的VPS外网地址)。
如果下载比较卡,可以临时改用国内源,即在命令结尾加上-i https://pypi.tuna.tsinghua.edu.cn/simple,后续安装都可以。
python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install jupyterthemes -i https://pypi.tuna.tsinghua.edu.cn/simple
# 列出主题
jt -l
# 选择主题
jt -t monokai
# 设置主题参数
jt -t oceans16 -f consolamono -tf ptmono -ofs 10 -nfs 13 -tfs 13 -fs 12 -T -N -lineh 140
主题参考:
https://www.jianshu.com/p/72ae0314e29a