Windows Python2.7路径解析错误

时间:2016-01-21 17:19:51

标签: python python-2.7

我正在尝试使用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,它起作用了。

1 个答案:

答案 0 :(得分:1)

问题是它试图调用C ++编译器:cpp并且你没有。{/ p>

您需要安装一个,或确保PATH在某个地方有cpp.exe