Error installing Python on Matlab

4 ビュー (過去 30 日間)
Alessandra Cuneo
Alessandra Cuneo 2016 年 9 月 21 日
回答済み: Bo Li 2016 年 9 月 22 日
Hi
I'm trying to install python on Matlab2014b to call some Matlab script from Python. I add the Python path in Matlab and write the following command:
cd "matlabroot\extern\engines\python"
python setup.py install
(where matlabroot is the path where Matlab is installed) but I get the following error:
"Undefined function 'python' for input arguments of type 'char'"
I controlled and in the current folder the file"setup.py" exists. Where I am wrong?
thanks

採用された回答

Bo Li
Bo Li 2016 年 9 月 22 日
You are supposed to run the command from the system prompt, not MATLAB command window:
"To install the engine API, execute the following commands at the operating system prompt, where matlabroot is the path to the MATLAB folder."
Reference:

その他の回答 (1 件)

George
George 2016 年 9 月 21 日
Assuming that you're trying to execute the python command this won't work:
cd "matlabroot\extern\engines\python"
python setup.py install
because it's trying to interpret the python "word" as a valid MATLAB function or variable.
You may have more luck with the bang command.

カテゴリ

Help Center および File ExchangeCall MATLAB from Python についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by