Jupyter更改主题和字体及远程访问

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Cowry5/article/details/80631433
  • pip install --upgrade jupyterthemes
  • jt -l 查看有哪些主题
  • jt -f inconsolata -t onedork 更改喜欢的字体和主题,-f 表示字体,-t 表示主题,这里是我认为好看的主题和字体。建议尝试。
  • jt -r 恢复默认主题

远程访问设置,这样启动方便一些:
https://blog.csdn.net/simple_the_best/article/details/77005400

Jupyter自定义启动命令:

jupyter notebook --config=~/.ipython/profile_nbserver/ipython_notebook_config.py

不同conda环境下使用Jupyter:

这里确保新建环境时后面加上jupyter选项

source activate magenta
jupyter notebook --config=~/.ipython/profile_nbserver/ipython_notebook_config.py

猜你喜欢

转载自blog.csdn.net/Cowry5/article/details/80631433