Jupyter搭建
利用Jupyter搭建在线Python编辑器
1. 创建虚拟环境
1 | $ pip install virtualenv |
2.安装Jupyter
1 | $ pip install jupyter |
3.配置 Jupyter Notebook
生成配置文件,文件在 /root/.jupyter/jupyter_notebook_config.py
1 | $ jupyter notebook --generate-config |
设置密码
1 | In [1]: from IPython.lib import passwd |
修改配置,在生成的config.py文件最后加入
1 | c.NotebookApp.ip = '*' #所有绑定服务器的IP都能访问,若想只在特定ip访问,输入ip地址即可 |
4.启动服务
1 | $ jupyter notebook |
在自己windows下用pip
安装了,但在cmd里面一直提示jupyter
不是命令,只能用python -m jupyter notebook
来运行了或者用jupyter-notebook
也可以。
5.设置主题
安装
1 | pip install jupyterthemes |
一种比较好看的配置
1 | jt -t onedork -f fira -fs 10 -cellw 90% -ofs 8 -dfs 8 -T -T -N |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 兜里有糖!
评论