我想在Python3的Linux上启动和停止一个外部程序。
这个程序是一个名为smip-tun,的可执行文件,与源代码位于同一文件夹中,我希望能够从那里用相对名称执行和控制它。
不幸的是,这不起作用:

smip_tun = 0

def start_smip_tun(self):
    smip_tun =  subprocess.Popen(['smip-tun',DEFAULT_SERIAL_PORT])

def end_smip_tun(self):
    smip_tun.terminate()
    print("end")

但表示找不到smip-tun。指定相对目录的操作失败。我试着用cwd但没搞清楚。
有什么建议吗?
编辑:
使Smip tun全球化,但问题仍然存在。
新代码:
smip_tun = 0

def start_smip_tun(self):
    global smip_tun
    smip_tun =  subprocess.Popen(['smip-tun',DEFAULT_SERIAL_PORT])

def end_smip_tun(self):
    global smip_tun
    smip_tun.terminate()
    print("end")

错误消息:
  File "/home/sven/git/cerberos_manager/iot_network_api.py", line 40, in start_smip_tun
    smip_tun = subprocess.Popen(['smip-tun',DEFAULT_SERIAL_PORT])
  File "/usr/lib/python3.5/subprocess.py", line 947, in __init__
    restore_signals, start_new_session)
  File "/usr/lib/python3.5/subprocess.py", line 1551, in _execute_child
    raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] No such file or directory: 'smip-tun'

最佳答案

import os

os.chdir('.') # or change the . for the full path directory.

smip_tun =  subprocess.Popen(['smip_tun',DEFAULT_SERIAL_PORT])

还要确保你的应用没有任何扩展名,比如smip-tun.pysmip-tun.sh

10-07 22:45