我在远程ubuntu机器'script1.py'上有一个python脚本,它有一个函数'remote_func'。
script1.py
def remote_func():
return True
我想从本地机器的脚本中调用'script1.py'中的'remote_func'函数。像这样:
from script1 import remote_func
if condition is True:
remote_func()
我知道通常的import语句在这里不起作用。那么可以解决这个问题呢?