jupyter notebook命令细节

配置

生成配置文件

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'

(注意将#号删除,注意是\双斜线,注意事项,不支持中文,可以有空格)

chrome://version/
jupyter notebook命令细节_第1张图片

修改 jupyter notebook 默认工作目录:

方案一:

    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外网地址)。

主题

安装包:jupyterthemes安装

如果下载比较卡,可以临时改用国内源,即在命令结尾加上-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

jupyter notebook命令细节_第2张图片
jupyter notebook命令细节_第3张图片

主题参考:
https://www.jianshu.com/p/72ae0314e29a

你可能感兴趣的:(解决Python相关的问题)