如何从运行提示符启动我通常从终端运行的程序? ( win key + R )
示例:
而不是按:
win + R, type "cmd", press enter, type "jupyter notebook", press enter
我想
win + R, type "cmd; jupyter notebook", press enter
可能是这样的:
cmd, jupyter notebook
cmd: jupiter notebook
cmd; jupyter notebook
这可能吗?
答案 0 :(得分:3)
只需输入:
cmd /c "jupyter notebook"
这将在执行命令后关闭命令提示符。如果您不想关闭命令提示符,请使用/ k而不是/ c。