Jupyter快速⼊门——写python项⽬博客⾮常有⽤
修改主题
有没有觉得JupyterNotebook的主题⾮常单调?
接下来,我们讲解⼀下如何修改JupyterNotebook的主题。
⾸先,需要安装相关的第三⽅库:
1. pip install --upgrade jupyterthemes
安装完成后,我们将会有⼀个jt的命令。
其使⽤的基本⽅法如下:
1. jt [-h] [-l] [-t THEME] [-f MONOFONT] [-fs MONOSIZE] [-nf NBFONT]
2. [-nfs NBFONTSIZE] [-tf TCFONT] [-tfs TCFONTSIZE] [-dfs DFFONTSIZE]
3. [-m MARGINS] [-cursw CURSORWIDTH] [-cursc CURSORCOLOR] [-vim]
4. [-cellw CELLWIDTH] [-lineh LINEHEIGHT] [-altp] [-altmd] [-altout]
5. [-P] [-T] [-N] [-r] [-dfonts]
参数含义如下:
python新建项目教程功能说明参数默认值
Usage help-h–
List Themes-l–
Theme Name to Install-t–
Code Font-f–
Code Font-Size-fs11
Notebook Font-nf–
Notebook Font Size-nfs13
Text/MD Cell Font-tf–
Text/MD Cell Fontsize-tfs13
Pandas DF Fontsize-dfs9
Output Area Fontsize-ofs8.5
Mathjax Fontsize (%)-mathfs100
Intro Page Margins-m auto
Cell Width-cellw980
Line Height-lineh170
Cursor Width-cursw2
Cursor Color-cursc–
Alt Prompt Layout-altp–
Alt Markdown BG Color-altmd–
Alt Output BG Color-altout–
Style Vim NBExt*-vim–
Toolbar Visible-T–
Name & Logo Visible-N–
Reset Default Theme-r–
Force Default Fonts-dfonts–
使⽤⽰例:
1. jt -t chesterish -T -N
命令执⾏完成后,重启Jupter-Notebook。
可以看到新的风格!!
Jupyter下conda多环境管理
⾸先安装内核管理⼯具
pip install ipykernel
创建虚拟环境的内核(使⽤命令创建以后就可以在Jupyter中看到新创建的内核了)    source activate osgeo
python -m ipykernel install --user --name osgeo --display-name "Python (osgeo)"查看创建的虚拟环境内核
jupyter kernelspec list
删除创建的虚拟环境内核
jupyter kernelspec uninstall osgeo
然后使⽤jupyter notebook 新建的时候就多了Python (osgeo)
如何在jupyter⾥安装python第三⽅软件包:
在jupyter notebook中直接输⼊:!pip install  [package]
例如:
!pip3 install tldextract
!pip3 install numpy
import tldextract
dir(tldextract)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。