Error using subprocess>_execute_child (line 1311) Python Error: FileNotFoundError: [WinError 2] The system cannot find the file specified
40 次查看(过去 30 天)
显示 更早的评论
when i call to my python script from matlab i fet this error:
Error using subprocess>_execute_child (line 1311)
Python Error: FileNotFoundError: [WinError 2] The system cannot find the file specified
Error in subprocess>__init__ (line 858)
Error in utils>mediainfo_json (line 274)
Error in audio_segment>from_file (line 728)
how can i fix it?
0 个评论
回答(2 个)
Yongjian Feng
2022-2-9
So figure out what file/package python has trouble to find, figure out where it is, and then add it to the PYTHONPATH env var inside matlab.
0 个评论
carl hyde
2023-2-7
When you specify the file name "filename.ext" while read file, you are providing the open() function with a relative path. This means that the file you want to read is located in the current working directory.
file = open('filename.ext') //relative path
In the above code, you are not giving the full path to a file to the open() function, just its name - a relative path. The error “FileNotFoundError: [Errno 2] No such file or directory” is telling you that there is no file of that name in the working directory. So, try using the exact, or absolute path.
file = open(r'C:\path\to\your\filename.ext') //absolute path
In the above code, all of the information needed to locate the file is contained in the path string - absolute path.
If the full path to the file is not provided, the python file path is interpreted relative to the current working directory. This is the directory from which the program was started. For this to work, the directory containing the python executable must be in the PATH environment variable, which contains directories automatically searched for executables when a command is entered. To access a file in a different directory, you must either specify a relative path between the files or use an absolute path for one of them.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!