为了在远程服务器上运行本地python脚本,我使用以下命令:
cat hello.py | ssh user@192.168.1.101 python -
但是当我想运行一个导入一些文件的脚本时;
import _init_paths
from fast_rcnn.config import cfg
from fast_rcnn.test import im_detect
from fast_rcnn.nms_wrapper import nms
上述命令并没有解决我的问题。如何在远程服务器上运行这样的python文件?
谢谢,