安装命令:
% conda create --name jupyter python=3.10
% conda activate jupyter
% conda install -c conda-forge jupyter
% jupyter notebook --generate-config
% vi /home/user/.jupyter/jupyter_notebook_config.py
% jupyter server password
% jupyter notebook
配置文件jupyter_notebook_config.py
:
主要修改几个配置项:
1、允许访问IP,默认是localhost
## The IP address the Jupyter server will listen on.
# Default: 'localhost'
c.ServerApp.<