Julia List
Julia List

Reputation: 31

Can I execute a remote python script from Mathematica?

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

Answers (1)

Chris Degnen
Chris Degnen

Reputation: 8655

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

or, for example

Run["ssh IP \"C:\\temp directory\\local\""]

Upvotes: 1

Related Questions