WithSecureLabs / python-exe-unpacker

A helper script for unpacking and decompiling EXEs compiled from python code.
GNU General Public License v3.0
903 stars 334 forks source link

ImportError: No module named pefile #13

Open madara19 opened 4 years ago

madara19 commented 4 years ago

le "F:\Python36\ex\python_exe_unpack.py", line 14, in import pefile ImportError: No module named pefile

Even if pefile is installed Any help please

purpler3m commented 4 years ago

Pretty much i had to run python -m pip install pefile

you have to verify where the packages are install by running pip -V. I noticed some of the packages were installed in python2 and others in python3. By running the command above seem to fix the issue for me. Then after that i ran sudo /.reset.sh and it work. Hope it works for you as well.