我正在尝试使用python 010编辑器模板parser
该文件明确指出(开始):
import pfp
pfp.parse(data_file="C:\path2File\file.SWF",template_file="C:\path2File\SWFTemplate.bt")
然而,它抛出:
RuntimeError: Unable to invoke 'cpp'. Make sure its path was passed correctly
Original error: [Error 2] The system cannot find the file specified
我尝试了所有东西,使用原始字符串:
df = r"C:\path2File\file.swf"
tf = r"C:\path2File\SWFTemplate.bt"
单个,然后在字符串中加倍'\'或'/'。但是,它不断抛出上述错误消息。
我检查了文件是否在路径中并确保所有内容都拼写正确,区分大小写。
为了测试我的路径,我使用了windows“type”(相当于* nix字符串)并将字符串作为args传递给了subprocess.Popen,它起作用了。
答案 0 :(得分:1)
问题是它试图调用C ++编译器:cpp
并且你没有。{/ p>
您需要安装一个,或确保PATH
在某个地方有cpp.exe
。