在linux下,后台启动程序加上&即可,在DOS下相应的用法为:
start /b xxx.exe
但是后台运行还是会有信息输出,因此可重定向:
start /b jupyter notebook >nul 2>nul
windows下后台启动jupyter notebook

最新推荐文章于 2025-06-24 09:51:04 发布

在linux下,后台启动程序加上&即可,在DOS下相应的用法为:
start /b xxx.exe
但是后台运行还是会有信息输出,因此可重定向:
start /b jupyter notebook >nul 2>nul