JupyterLab
是一个交互式的开发环境,是Jupyter notebook
的下一代产品,集成了更多的功能。
pip install jupyterlab
pip install ipython
jupyter notebook --generate-config
jupyter notebook password
~/.jupyter/jupyter_notebook_config.py
的以下内容(或者把下面的内容直接复制到文件中):
c.NotebookApp.allow_remote_access = True # 允许远程访问
c.NotebookApp.allow_root = True # 允许root权限启动jupyter
# c.NotebookApp.enable_mathjax = True # 可选配置,是否使用MathJax渲染,如果网络比较慢就不用开启啦,本地的话没问题
c.NotebookApp.ip = '*' # 允许所有ip访问
c.NotebookApp.open_browser = False # 不自动打开浏览器
c.NotebookApp.port = 8888 # 可以手动设置端口
c.ContentsManager.allow_hidden = True # 是否可以访问隐藏文件
个人使用比较少,暂时不配置这一项,可以参考其它博客。
在终端输入:
jupyter-lab