本地电脑远程使用服务器 jupyter notebook及主题更换

文章目录

  • 前言
  • 一、本地电脑远程使用服务器上的jupyter notebook
  • 二、jupyter notebook 更换主题
  • 总结


前言

本篇介绍如何在本地电脑远程使用服务器上的jupyter notebook,并且介绍如何更换jupyter notebook 的主题,使其看起来更漂亮。


一、本地电脑远程使用服务器上的jupyter notebook

本地电脑Windows系统,服务器Linux系统。 在服务器上下载安装annconda后,进行如下配置jupyter notebook.

  1. 建立config文件

    jupyter notebook --generate-config

  2. 进入.jupyter文件夹

    cd ~/.jupyter

  3. 打开 jupyter_notebook_config.py文件

    vim jupyter_notebook_config.py

  4. 修改jupyter_notebook_config.py文件,添加如下命令

    #获取配置
    c = get_config()
    #设置为 * 表示所有 IP 都可以访问
    c.NotebookApp.ip = '*'
    #禁止Notebook 启动时自动打开浏览器
    c.NotebookApp.open_browser = False
    #指定访问的端口,默认是8888,自己设置一个即可
    c.NotebookApp.port = 6006
    #全0表示接受任何IP地址的访问
    c.ConnectionFileMixin.ip = '0.0.0.0'
    #允许远程访问
    c.NotebookApp.allow_remote_access = True

  5. 尝试打开jupyter notebook

    jupyter notebook --ip=*.*.*.*

    此处ip为所访问服务器的ip.
    本地电脑远程使用服务器 jupyter notebook及主题更换_第1张图片

  6. 本地打开

    将上一步copy and paste one of these URLs下的链接复制到本地浏览器中。
    本地电脑远程使用服务器 jupyter notebook及主题更换_第2张图片


二、jupyter notebook 更换主题

  1. 安装主题包

    pip install jupyterthemes

  2. 升级主题包(可选可不选)

    pip install --upgrade jupyterthemes

  3. 更换 Jupyter 主题

    jt -t onedork -f fira -fs 13 -cellw 60% -ofs 11 -dfs 11 -T -N
    -t 主题 -f(字体) -fs(字体大小) -cellw(占屏比或宽度) -ofs(输出段的字号) -T(显示工具栏) -N(显示名称)

  4. 查看可用的 Jupyter 主题:

    jt -l

  5. 恢复Jupyter 默认风格:

    jt -r

注:

  1. juputer notebook主题github地址https://github.com/dunovank/jupyter-themes,介绍非常详细,可以好好看看,下面给出一个命令选项的翻译,供参考。

  2. 我的配置:jt -t monokai -f fira -T -N

    本地电脑远程使用服务器 jupyter notebook及主题更换_第3张图片


总结

本篇介绍如何在本地电脑远程使用服务器上的jupyter notebook,并且介绍如何更换jupyter notebook 的主题,使其看起来更漂亮。不同的有不同的喜好风格,既然知道了怎么更换主题,就赶紧试试,找到自己中意的那种。。。

你可能感兴趣的:(基础工具,linux,python,windows,编辑器)