PyRun_SimpleString("sys.path.append('./')");
,指明py文件要放在exe跟路径下;如果是VS调试模式,则需放在代码目录下。如果路径不对,会返回NULL。假如你要运行的python代码如下:
import requests
import time
import execjs
print('hello word!')
time
是python内置库,requests
和execjs
均为外部库,则需要用pip工具安装。
pip install requests
安装requests库;pip install PyExecJS
安装execjs库;pip install xxx
安装即可。