中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用jupyter notebook怎么實現一個更換皮膚主題功能

發布時間:2021-01-08 16:16:38 來源:億速云 閱讀:338 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關利用jupyter notebook怎么實現一個更換皮膚主題功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

下載jupyterthemes

我們可以通過pip來安裝jupyterthemes

pip install jupyterthemes

也可以通過下列命令來更新jupyterthemes到最新版本

pip install --upgrade jupyterthemes

使用jupyterthemes

那么下載完成后,我們可以在終端使用 jupyter-theme 命令來更改notebook主題

jupyter-theme -h # 查看jupyter-theme的幫助手冊

您也可以通過 jupyter-theme 的命令簡寫 jt 來使用

jt -h # 查看jupyter-theme的幫助手冊

強烈推薦第二種方式,因為懶惰是程序員的基本美德

jupyter-theme參數詳解

功能介紹選項參數默認值
查看幫助文檔-h--
展示所有的皮膚主題-l--
設置安裝的主題-t--
設置代碼字體樣式-f--
設置代碼字體大小-fs11
設置notebook的字體樣式-nf--
設置notebook的字體大小-nfs13
設置text/md的cell字體樣式-tf--
設置text/md的cell字體大小-tfs13
設置Pandas的DataFrame字體大小-dfs9
設置輸出區域的字體大小-ofs8.5
設置Mathjax的字體大小(%)-mathfs100
設置頁面的margin外邊距-mauto
設置Cell的寬度-cellw980
設置行高-lineh170
設置光標的寬度-cursw2
設置光標的顏色-cursc--
Alt Prompt Layout-altp--
Alt Markdown BG Color-altmd--
Alt Output BG Color-altout--
Style Vim NBExt*-vim--
Toolbar是否可見-T--
文件名和Logo是否可見-N--
內核的Logo是否可見-kl--
重置為默認的notebook主題-r--
重置為默認的字體-dfonts--

code cells的可選字體樣式

-f argMonospace Font
ankaAnka/Coder
anonymousAnonymous Pro
aurulentAurulent Sans Mono
bitstreamBitstream Vera Sans Mono
bpmonoBPmono
codeCode New Roman
consolamonoConsolamono
cousineCousine
dejavuDejaVu Sans Mono
droidmonoDroid Sans Mono
firaFira Mono
firacodeFira Code
genericGeneric Mono
hackHack
haskligHasklig
inconsolataInconsolata-g
inputmonoInput Mono
iosevkaIosevka
liberationLiberation Mono
mesloMeslo
officeOffice Code Pro
oxygenOxygen Mono
robotoRoboto Mono
saxmonosaxMono
sourceSource Code Pro
sourcemedSource Code Pro Medium
ptmonoPT Mono
ubuntuUbuntu Mono

notebook與text/md cells的可選字體樣式

Sans-Serif Fonts

-nf/-tf argSans-Serif Font
opensansOpen Sans
droidsansDroid Sans
exosansExo_2
latosansLato
ptsansPT Sans
robotosansRoboto
sourcesansSource Sans Pro

Serif Fonts

-nf/-tf argSerif Font
loraserifLora
ptserifPT Serif
georgiaserifGeorgia
cardoserifCardo
crimsonserifCrimson Text
ebserifEB Garamond
merriserifMerriweather
neutonserifNeuton
goudyserifSorts Mill Goudy

jupyter-theme使用示例

# 查看所有可選主題
# chesterish | grade3 | gruvboxd | gruvboxl | monokai | oceans16 | onedork | solarizedd | solarizedl
jt -l

# 切換使用grade3主題
# 一般刷新notebook頁面就可以看到效果,如果沒起作用的話,可能需要刪除一下瀏覽器的緩存
jt -t grade3

# 重置notebook的主題,回到解放前
jt -r

# 默認展示工具箱以及文件名
jt -t monokai -T -N

# 設置notebook界面和text/md cells的字體樣式,并且設置字體大小
# 字體大小的單位為pt
jt -t oceans16 -tf merriserif -tfs 10 -nf ptsans -nfs 13

# 設置cell的寬度與行高
# 可以通過百分比來設置寬度
jt -t chesterish -cellw 90% -lineh 170

# 通過像素px來設置cell的寬度,設置為860px
jt -t solarizedd -cellw 860

# 設置光標變成紅色,并且將其大小變為5px
# 可選的顏色 b (blue), o (orange), r (red), p (purple), g (green), x (font color)
jt -t solarizedl -cursc r -cursw 5

jupyter-theme可用主題一覽

默認主題

利用jupyter notebook怎么實現一個更換皮膚主題功能

chesterish

利用jupyter notebook怎么實現一個更換皮膚主題功能

grade3

利用jupyter notebook怎么實現一個更換皮膚主題功能

gruvboxd

利用jupyter notebook怎么實現一個更換皮膚主題功能

gruvboxl

利用jupyter notebook怎么實現一個更換皮膚主題功能

monokai

利用jupyter notebook怎么實現一個更換皮膚主題功能

oceans16

利用jupyter notebook怎么實現一個更換皮膚主題功能

onedork

利用jupyter notebook怎么實現一個更換皮膚主題功能

solarizedd

利用jupyter notebook怎么實現一個更換皮膚主題功能

solarizedl

利用jupyter notebook怎么實現一個更換皮膚主題功能

看完上述內容,你們對利用jupyter notebook怎么實現一個更換皮膚主題功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万全县| 上高县| 钟山县| 宕昌县| 福鼎市| 长丰县| 洛川县| 个旧市| 巨野县| 兴城市| 凤庆县| 邹平县| 涿鹿县| 界首市| 涿州市| 沭阳县| 岑巩县| 朝阳县| 永定县| 建德市| 南阳市| 衡东县| 海口市| 湘乡市| 桦川县| 宁国市| 左权县| 拜泉县| 阜城县| 定结县| 策勒县| 聂荣县| 荥经县| 监利县| 无极县| 余庆县| 密山市| 施甸县| 屯留县| 三亚市| 卢湾区|