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.
可能重复: 在 Python 中调用外部命令
我正在尝试将 SVG 文件转换为 Python 中的 PDF。我想为此使用 Inkscape。如何在 Python 中调用 Inkscape?
如果您根本不需要与进程通信,这应该就可以了:
import subprocess p=subprocess.call(['program','arg1','arg2','arg3', ...])