安装jupyter编辑器

conda创建python的虚拟环境

1
conda create -n obsTest01 python=3.10

安装jupyter模块包

1
pip install jupyter

启动jupyter

1
nohup jupyter notebook  --no-browser --port 8888 --ip=192.168.3.120 --notebook-dir=/data/app/notebook/jupyter/data > /data/app/notebook/jupyter/jupyter_run.log &