标签: python linux bash shell pelican
我尝试使用Python的子进程执行shell命令。我就是这样做的:
pelican = 'pelican content -s /home/pelican/publishconf.pyt -D --ignore-cache' subprocess.call(pelican, shell=True)
但回复是command not found。当我在命令行中写字时,它没有问题。
command not found
我的问题是我如何使用行为只是的python执行shell命令,就像我要输入它一样?