Reputation: 31
Mathematica newbie here. I'm looking to execute a remote python script from Mathematica. Is this possible? I've tried using "Run" but I get numerical outputs that don't make sense (like 65280 for the input Run[ssh IP "local path"]. Is this syntax right or is that my issue?
Upvotes: 2
Views: 450
Reputation: 8655
Run["ssh IP \"local path\""]
or, for example
Run["ssh IP \"C:\\temp directory\\local\""]
Upvotes: 1