2011-07-19 44 views
13

看来最新版本只针对2.6。如何在python 2.7下安装heapy?

我正面临着ImportError: DLL load failed: The specified module could not be found.,找不到任何解决方案,有人知道吗?

是否有任何其他内存分析器可用于Python 2.7?

错误回溯:

>>> import guppy 
>>> from guppy import hpy 
>>> h = hpy() 

Traceback (most recent call last): 
    File "<pyshell#3>", line 1, in <module> 
    h = hpy() 
    File "D:\program files\Python2.7\lib\site-packages\guppy\__init__.py", line 37, in hpy 
    return r.guppy.heapy.Use 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 45, in __getattr__ 
    return self._share.getattr(self, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 195, in getattr 
    d = self.getattr2(inter, cache, owner, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 213, in getattr2 
    x = self.getattr_package(inter, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 261, in getattr_package 
    x = self.makeModule(x, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 321, in makeModule 
    return Share(module, self, module.__name__, Clamp) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 184, in __init__ 
    getattr(inter, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 45, in __getattr__ 
    return self._share.getattr(self, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 195, in getattr 
    d = self.getattr2(inter, cache, owner, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 215, in getattr2 
    x = self.getattr3(inter, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 283, in getattr3 
    pa = getattr(pa, at) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 45, in __getattr__ 
    return self._share.getattr(self, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 195, in getattr 
    d = self.getattr2(inter, cache, owner, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 213, in getattr2 
    x = self.getattr_package(inter, name) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\etc\Glue.py", line 250, in getattr_package 
    x = __import__(self.makeName(name), globals(), locals()) 
    File "D:\program files\Python2.7\lib\site-packages\guppy\heapy\View.py", line 555, in <module> 
    prime_builtin_types() 
    File "D:\program files\Python2.7\lib\site-packages\guppy\heapy\View.py", line 538, in prime_builtin_types 
    import guppy.heapy.heapyc 
ImportError: DLL load failed: The specified module could not be found. 

回答

15

当我尝试从文件夹所在的文件夹中启动python时,我遇到了同样的错误。但是出于这个目录,我在实例化hpy时遇到了问题。最后,我从后备箱中安装它得到heapy上python2.7工作

pip install https://guppy-pe.svn.sourceforge.net/svnroot/guppy-pe/trunk/guppy 
0

看起来可能只是从目录中缺少所需的DLL - 你可以尝试从2.6目录复制到适当的路径。虽然没有保证。

0
  1. https://pypi.python.org/pypi/guppy/0.1.10下载源代码(或您需要哪个版本过)
  2. 提取tar文件:焦油ZXF [你的孔雀鱼tar文件]
  3. 进入文件夹:cd guppy- [version]
  4. 注意setup.py文件。运行安装程序:sudo python setup.py install

Guppy已安装。