从python子进程运行rvls

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从python子进程运行rvls相关的知识,希望对你有一定的参考价值。

  1. import nuke, subprocess
  2. f = nuke.filename( nuke.selectedNode(), nuke.REPLACE )
  3. rvls = 'Z:/SYNC/RV/3.8.7/win/x64/bin/rvls.exe'
  4. cmd = '%s -x %s' % ( rvls, f )
  5. info = subprocess.Popen( cmd,stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE )
  6. print info.communicate()

以上是关于从python子进程运行rvls的主要内容,如果未能解决你的问题,请参考以下文章

使用子进程从 Python 运行 PDAL bash 命令的问题 [重复]

如何捕获从 python 子进程运行的 git clone 命令的输出

如何在给定时间运行子进程python

Jupyter notebook 中 Python 子进程的实时标准输出输出

使用 asyncio 将 bash 作为 Python 的子进程运行,但 bash 提示被延迟

使用 python 子进程运行 GNU 并行命令