我需要通过ssh发送命令,如果命令成功完成,则需要获得反馈。 我试图写这个:
[t20, t30]
但函数#Creating the session on the remote machine
notebook_remote_command = "nohup jupyter notebook --no-browser --port={} &\n".format(port_remote)
channel = client.invoke_shell()
channel.send(notebook_remote_command)
status = channel.recv_exit_status()
if status == "-1":
exit(0)
不返回。