2016-07-14 86 views
1

Mathematica新手在這裏。我正在尋找從Mathematica執行遠程Python腳本。這可能嗎?我嘗試使用「運行」,但我得到的數值輸出沒有任何意義(如65280爲輸入運行[ssh IP「本地路徑」]。該語法是正確的還是我的問題?我可以從Mathematica執行遠程python腳本嗎?

+0

'Run'返回退出代碼,與非爲零,表明了一些錯誤,請嘗試'RunProcess',並注意你雷爾確實需要提供的論據是應該很清楚的列表在文檔中。 – agentp

回答

0
Run["ssh IP \"local path\""] 

,或者例如

Run["ssh IP \"C:\\temp directory\\local\""] 
相關問題