jupyter登录:jupyter notebook --ip=0.0.0.0
浏览器输入对应网址
ps -ef 查看当前运行进程
pip/python install ... --user (安装在对应目录下)
CUDA_VISIBLE_DEVICES=0/1.. python demo.py 选择对应的GPU
jupyter转为python文件
jupyter nbconvert --to python file_name.ipynb
后台执行,进程不挂起{
(1) nohup command & (默认在当前执行目录下生成nohup文件)
查看: cat nohup.out
(2) 自定义文件名
nohup command > filename.out 2>&1 &
查看: cat filename.out
}