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.
我使用结构在服务器上运行编译,服务器是 Linux,客户端是 Windows,通道是 SSH。
您可以使用combine_stderr=False(至少在 1.0 中)。
combine_stderr=False
也可以看看:
默认情况下,fabric.api.run将 stdout 和 stderr 组合到同一个流中。正如@miku 所说,在fabric 1.0 中,您可以禁用此行为设置combine_stderr=False。或者,只需将 stderr 重定向到 /dev/null
fabric.api.run
run('scons 2>/dev/null')