windows上安装Anaconda (IPython notebook) Anaconda是一个包与环境的管理器,一个Python发行版,以及一个超过1000多个开源包的集合.它是免费和易于安装的,并且提供免费的社区支持.Anaconda中内嵌IPython notebook环境 IPython notebook又称Jupyter notebook是一个Web交互式的Python开发环境,具有方便的单步调试功能,并拥有丰富的拓展插件!可以集成Vim环境,可在windows上享受各种Vim快捷键…
 https://study.163.com/provider/400000000398149/index.htm?share=2&shareId=400000000398149( 欢迎关注博主主页,学习python视频资源,还有大量免费python经典文章) https://www.jianshu.com/p/9c5dc256a88a 转载 最近开始使用jupyter notebook,主要用来学习深度学习,jupter notebook的确很强大,但是一整天一直盯着电脑屏幕看,简直闪瞎眼.就…
1.背景主题.字体大小设置 安装Jupyter主题: pip install jupyterthemes 然后,更新Jupyter主题: pip install --upgrade jupyterthemes 查看可用主题: jt -l 我个人喜欢暗一点的背景主题,于是选择了monokai,它还支持语法高亮.下面是我的背景主题设置: jt -t monokai -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -N -f(字体)  -fs(字体大小) -c…
通过命令行窗口或 Anaconda Prompt 窗口 1.安装 Jupyter 主题 pip install jupyterthemes 2.更新 Jupyter 主题 (可选) pip install --upgrade jupyterthemes 3.查看可用的 Jupyter 主题 jt -l 4.更换 Jupyter 主题 jt -t onedork -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -T -t 主题 -f(字体)  -fs(字体…
在使用jupyter进行编程时,初始化目录可能不是自己想要的目录,那么下面讲解修改成自己想要的目录. 1) 在命令行中输入jupyter notebook --generate-config,会产生一个配置文件 我的会显示Writing default config to: C:\Users\allen\.jupyter\jupyter_notebook_config.py这样的提示. 2) 找到对应的文件,搜索c.NotebookApp.notebook_dir 将前面的#注释去掉,在后面填上…
参考 https://github.com/dunovank/jupyter-themes install with pip # install jupyterthemes pip install jupyterthemes # upgrade to latest version pip install --upgrade jupyterthemes 查看有哪些主题 jt -l 更换某主题 jt -t grade3 # 更换主题和字体 jt -f inconsolata -t grade3 恢复…
默认的风格对代码关键词的颜色提醒很不明显,而且白色背景长久使用非常刺眼,所以考虑更换主题. 在更换途中,发现代码输出行,前几个字符被遮挡显示不出来,找了很久才解决,备忘一些要点. 1:替换主题方法 https://www.jianshu.com/p/168a2509db79 https://www.itcodemonkey.com/article/8938.html 第一步:使用pip安装Jupyter的自定义主题. 打开cmd,直接输入:pip install --upgrade jupyte…
1.打开 cmd 输入命令 jupyter notebook --generate-config 可以看到生成文件的路径,这个就是生成的配置文件jupyter_notebook_config.py, 2.打开后找到 这个地方 删除前面的’#‘ 然后填写自己的路径,保存,启动 jupyter notebook ------------------------------------------------华丽的分割线-----------------------------------------…
临时性的改变一个jupyter的主题 参考这个实现,只要在notebook里运行这段代码就行了,能让所有的cell都能够显示黑色背景 一个更为完备的工具 参考这个方案: 安装jupyter-themer 然后执行jupyter-themer命令 如 jupyter-themer -c monokai 只要重启ipython notebook 就可以了 想要换回原来的默认值,执行 jupyter-themer 不加任何参数就行了 值得注意的是要是想让这些修改生效,要把.ipython文件夹下的以前…
1.windows系统 (1)下载到本地(使用git bash命令行界面) git clone https://github.com/dunovank/jupyter-themes (2)Install with pip # install jupyterthemes pip install jupyterthemes # upgrade to latest version pip install --upgrade jupyterthemes (3)以上安装完成后,可以尝试切换主题了 # li…