You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unzip pydasm, and enter the dir of pydasm
python setup.py build_ext --compiler=mingw32
python setup.py install
Download paimei&pydbg from github
Unzip paimei&pydbg, and copy the files of pydbg to the pydbg/ sub directory of paimei
Enter the dir of paimei,
python setup.py build
python setup.py install
All above steps finished successfully, but when I try to import pydbg module, failure occurs:
import pydbg
Traceback (most recent call last):
File "<pyshell#2>", line 1, in
import pydbg
File "C:\Python27\lib\site-packages\pydbg__init__.py", line 47, in
from pydbg import *
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 32, in
import pydasm
ImportError: Module use of python26.dll conflicts with this version of Python.
Does this mean that pydbg can only work with python 2.6?
The text was updated successfully, but these errors were encountered:
This occurs because the compiled version of the pydasm extension they're using is for python 2.6. To fix this, just compile libdasm and build the extension with your version of Python. If you don't have a compiler on hand or don't know how to do this, I have some compiled binaries I can send you.
I installed pydbg with the following steps: (OS is WinXP, python 2.7.2)
python setup.py build_ext --compiler=mingw32
python setup.py install
python setup.py build
python setup.py install
All above steps finished successfully, but when I try to import pydbg module, failure occurs:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in
import pydbg
File "C:\Python27\lib\site-packages\pydbg__init__.py", line 47, in
from pydbg import *
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 32, in
import pydasm
ImportError: Module use of python26.dll conflicts with this version of Python.
Does this mean that pydbg can only work with python 2.6?
The text was updated successfully, but these errors were encountered: