修改jupyter notebook主題、字體和啓動路徑

1.安裝主題

window在cmd中輸入瀏覽器

pip install --upgrade jupyterthemes

完成後輸入查看工具

jt -l

就提示有字體

Available Themes:
chesterish
grade3
monokai
oceans16
onedork
solarizedd
solarizedlcode

2.切換

輸入blog

jt -t 主題名 -N -T

若是命令是‘jt -t 主題名’的形式切換的主題沒有工具欄ip

執行後重啓jupyter就行
回覆默認則cmd

jt -r

下面是oceans16效果
it

3.字體

在瀏覽器中修改字體便可,這裏將chrome的設置->高級中修改:
pip

4.啓動路徑

先在cmd中查找啓動路徑:

jupyter notebook --generate-config

選擇是否要替換默認的

C:\Users\Administrator\.jupyter\jupyter_notebook_config.py with default config? [y/N]n    # 選擇不替換爲默認配置

而後到指定路徑下打開文件jupyter_notebook_config.py,搜索****並修改路徑:

## The directory to use for notebooks and kernels.
#c.NotebookApp.notebook_dir = ''
c.NotebookApp.notebook_dir = 'D:\\newfolder'

保存重啓就能夠。可是常常經過快捷方式啓動,發現仍是默認路徑,緣由在於快捷方式的屬性中仍是使用了%USERPROFILE%。將這個刪除就行!

相關文章
相關標籤/搜索