测试环境描述
1:c++调用python,操作系统环境是linux
2:pycharm安装在windows
安装步骤
1:把pycharm-debug.egg上传到linux上面。
2:使用easy_install pycharm-debug.egg安装
3:设置pycharm的edit configuration
第一个红框是pycharm所在机器的ip和端口
第二个红框设置本地py文件和远程py文件的映射,注意是据对路径
4:在需要调试的脚本中加入如下代码:
import pydevd pydevd.settrace("192.168.1.145",port=12306,stdoutToServer=True,stderrToServer=True) ~
5:在pycharm中启动debug,注意选择debug的configuration是上面配置的
6:运行远程的脚本。
现在就可以调试了
~
时间: 2024-11-03 05:36:04