python使用pefile出错解决方案

python使用pefile 解析打印
#-- encoding: gb2312 --
import threading
import Queue

import os, string, shutil,re
import pefile

if name == “main”:
PEfile_Path = r"C:\md335.exe"
pe = pefile.PE(PEfile_Path)
print PEfile_Path
print pe

结果提示错误:
python使用pefile出错解决方案_第1张图片

解决方案:
库文件太久,升级一下pefile就可以,输入
python -m pip install --upgrade pefile
python使用pefile出错解决方案_第2张图片

再次运行,可以了
python使用pefile出错解决方案_第3张图片

你可能感兴趣的:(python)