Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你怎么:
到目前为止,我一直在进行更改,将它们复制到 Yun,重新启动它,并且在没有调试的情况下进行所有这些操作。(我必须测试云本身。)
在 Python 脚本中,你可以给自己这样的消息:print("var x = {0}; y = {1}".format(x, y))
print("var x = {0}; y = {1}".format(x, y))
运行python path/to/file.py(在 SSH 时)以访问带有实时日志的服务器。
python path/to/file.py
如果服务器已经在运行,您可以对正在运行的进程执行ps | grep pythonthen kill XXXX,然后再次运行上述指令。
ps | grep python
kill XXXX