Linuxで以下の各「コマンド」を開始しようとする次のコードがあります。モジュールは、何らかの理由でクラッシュする必要がある場合、2つのコマンドのそれぞれを実行し続けようとします。
#!/usr/bin/env python
import subprocess
commands = [ ["screen -dmS RealmD top"], ["screen -DmS RealmD top -d 5"] ]
programs = [ subprocess.Popen(c) for c in commands ]
while True:
for i in range(len(programs)):
if programs[i].returncode is None:
continue # still running
else:
# restart this one
programs[i]= subprocess.Popen(commands[i])
time.sleep(1.0)
コードを実行すると、次の例外がスローされます。
Traceback (most recent call last):
File "./marp.py", line 82, in <module>
programs = [ subprocess.Popen(c) for c in commands ]
File "/usr/lib/python2.6/subprocess.py", line 595, in __init__
errread, errwrite)
File "/usr/lib/python2.6/subprocess.py", line 1092, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
私は明白な何かを見逃していると思います、上記のコードの何が問題なのか誰でも見ることができますか?
つかいます ["screen", "-dmS", "RealmD", "top"]
の代わりに ["screen -dmS RealmD top"]
。
screen
への完全なパスを使用することもできます。
推測は、screen
が見つからないということだけです。 /usr/bin/screen
または何でもwhich screen
あなたにあげる。
問題は、コマンドを分割する必要があることです。 subproccesでは、cmdが文字列ではなくリストである必要があります。であってはなりません:
_subprocess.call('''awk 'BEGIN {FS="\t";OFS="\n"} {a[$1]=a [$1] OFS $2 FS $3 FS $4} END
{for (i in a) {print i a[i]}}' 2_lcsorted.txt > 2_locus_2.txt''')
_
それは機能しません。サブプロセスに文字列を入力すると、それが実行するコマンドへのパスであると想定されます。コマンドはリストである必要があります。 http://www.gossamer-threads.com/lists/python/python/7243 をご覧ください。また、ファイルのリダイレクトを使用しているため、subprocess.call(cmd, Shell=True)
を使用する必要があります。 shlex
を使用することもできます。
commands = [ "screen -dmS RealmD top", "screen -DmS RealmD top -d 5" ]
programs = [ subprocess.Popen(c.split()) for c in commands ]
私はこのように書いたときに同じエラーが発生しました:-
_subprocess.Popen("ls" ,Shell = False , stdout = subprocess.PIPE ,stderr = subprocess.PIPE)
_
そして、私がShell = Trueを作成すると問題が解決します。
subprocess.Popen("ls" ,Shell = False , stdout = subprocess.PIPE ,stderr = subprocess.PIPE, Shell=True)
念のため..私もこのエラーで立ち往生し、問題は私のファイルがUNIXではなくDOSにあったということでした:
return subprocess.call(lst_exp)
ここで、lst_expは引数のリストであり、そのうちの1つは「not found」でした。UNIXではなくDOSにありましたが、スローされるエラーは同じでした。
File "/var/www/run_verifier.py", line 59, in main
return subprocess.call(lst_exp)
File "/usr/lib/python2.7/subprocess.py", line 522, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory