最新的版本似乎只有2.6版。
我面对的是ImportError: DLL load failed: The specified module could not be found.,周围找不到任何解决方案,有人知道吗?
有没有其他的内存分析器可用于python2.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.发布于 2011-07-20 01:38:08
当我试图从guppy源文件所在的文件夹启动python时,我也遇到了同样的错误。但是在这个目录之外,我在实例化hpy时遇到了问题。最后,我通过从主干上安装,让heapy在python2.7上工作
pip install https://guppy-pe.svn.sourceforge.net/svnroot/guppy-pe/trunk/guppy发布于 2011-07-20 01:01:24
看起来所需的dll可能只是从目录中丢失了-您可以尝试将其从2.6目录复制到适当的路径中。然而,不能保证。
发布于 2017-10-05 09:39:14
setup.py文件。运行安装程序: sudo python setup.py install
Guppy已安装。
https://stackoverflow.com/questions/6750563
复制相似问题