pycharm配置远程部署
Preferences -> Build, Execution, Deployment -> Deployment:
点击”+”新添加一个配置项:
1 | # Connection |
自动生成配置用户名: paladintyrion@10.85.10.16:22
配置远程调试Interpreter
Preferences -> Project: xxxx -> Project Interpreter
在Project Interpreter最右选择Add,增加一条SSH Interpreter
1 | #添加类似上述配置配置,最后页配置如下: |
原理
上述配置只配置远程调试Interpreter即可。运行代码时,本地代码会首先同步到remote path,然后启动配置的remote node的python interpreter去运行相对应代码。前提是需要remote node已经pip3 install了相应的执行包。
注意
这种远程调试不适合cython的开发调试,最好直接配置远程机编译并运行调试。