我最近使用以下命令在我的Ubuntu 14.04虚拟机上安装了rpyc:
pip install rpyc
我找不到可用于启动服务器的文件。我看过很多地方,但无济于事。
答案 0 :(得分:4)
命令行只是rpyc_classic.py
:
$ rpyc_classic.py
INFO:SLAVE/18812:server started on [0.0.0.0]:18812
然后连接:
from rpyc import classic
c = classic.connect("0.0.0.0",port=18812)
print(c.modules.sys.platform)
linux
您将在shell中看到连接:
INFO:SLAVE/18812:accepted 127.0.0.1:58217
INFO:SLAVE/18812:welcome [127.0.0.1]:58217