c++调用python脚本
参考https://blog.csdn.net/u012986684/article/details/77802657
1. 一开始用的是python3,直接用的execfile执行python脚本
PyRun_SimpleString("execfile('/home/cbc/pcl_without_ros/qt/test_python/test.py')")
总是报错,如下:
NameError: name 'execfile' is not defined
解决:
因为execfile在python3中已被废除了。。
替代函数是exec(open(filename).read())