Traceback (most recent call last): File "C:\Users\davids\Desktop\test.py", line 21, in <module> flightgear_process = subprocess.Popen(["/path/to/flightgear/bin/fgfs"] + flightgear_args) File "D:\python37\lib\subprocess.py", line 800, in __init__ restore_signals, start_new_session) File "D:\python37\lib\subprocess.py", line 1207, in _execute_child startupinfo) FileNotFoundError: [WinError 2] 系统找不到指定的文件。 >>> 这是什么故障
时间: 2023-06-13 12:06:55 浏览: 306
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示是说在调用 subprocess.Popen 函数时,指定的可执行文件路径 "/path/to/flightgear/bin/fgfs" 不存在,因此系统找不到指定的文件。你需要检查一下这个路径是否正确,或者是否存在该文件。如果路径不正确,需要修正路径。如果文件不存在,需要安装相应的软件。
阅读全文