Running the bat file

조회 수: 26 (최근 30일)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2017년 6월 26일
편집: dpb 2017년 6월 26일
I have bat file named data.bat with simple command "python". When i double click the bat file python is running successfully. But when i run the bat file from MATLAB using the commands below,
dos('C:\Users\W25VCSQ\Desktop\data.bat &') or system('data.bat')
I am getting the error "The command python is either false or not found"
How should i call the bat file or how should the bat file should be written?
Thanks a lot
  댓글 수: 5
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2017년 6월 26일
I have attached the content of the batch file in txt format.
dpb
dpb 2017년 6월 26일
편집: dpb 2017년 6월 26일
OK, but not the full context from Matlab--only a bit at a time that we can't see the whole problem from.
Again, a piece of code with all variables in it defined executed and then the error message all in one complete piece.
Also, you can execute
system &
and then check what are the environment variables (particularly PATH) and whether
python
at that command prompt will run/be found or not. If not, you need to either use fully-qualified path to the executable or execute a PATH= command first in the .bat file to set the PATH as needed for the session.

댓글을 달려면 로그인하십시오.

채택된 답변

dpb
dpb 2017년 6월 26일
When the new process is spawned, it inherits default environment (PATH and other variables). If python isn't installed on that default path, it won't be found. Have the .bat file set any environment variables it needs or modify the startup environment to make that a global setting all sessions will inherit. The former is probably the more appropriate rather than modifying system.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by