I installed pydbg with the following steps: (OS is WinXP, python 2.7.2)
- Download pydasm from http://code.google.com/p/libdasm/downloads/detail?name=libdasm-beta.zip&can=2&q=
- 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?
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?