Jupyter Notebook安装,配置服务,主题
Jupyter Notebook安装
首先安装Anaconda
1.创建环境conda create -n env_name python=3.6
2.激活环境,安装jupyter notebook
3.配置文件 /root/.jupyter/jupyter_notebook_config.py
c.JupyterApp.config_file = '~/.jupyter/jupyter_notebook_config.py' # 配置文件的位置
c.NotebookApp.allow_remote_access = True # 其他主机使用服务
c.NotebookApp.base_url = '/' # URL的后缀
c.NotebookApp.enable_mathjax = True
c.NotebookApp.ip