任何身体可以帮助吗?我收到这个错误,我无法解决它?

时间:2016-04-11 13:32:00

标签: python python-2.7

我想运行一个python文件然后启动但是之后给我这个错误。我要修复这个错误,我是python的初学者。

Traceback (most recent call last):
  File "./mininet_multicast_pox.py", line 318, in <module>
    mcastTest(topo, False, hosts)
  File "./mininet_multicast_pox.py", line 53, in mcastTest
    pox_process = Popen(pox_arguments, stdout=fnull, stderr=fnull, shell=False, close_fds=True)
  File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

1 个答案:

答案 0 :(得分:2)

您必须为您的文件提供绝对路径。 没有它,子进程模块找不到它。

os模块为此提供了routine