How do I install heapy under python 2.7?

前端 未结 3 653
没有蜡笔的小新
没有蜡笔的小新 2021-02-02 17:33

It seems the latest version is for 2.6 only.

I\'m facing ImportError: DLL load failed: The specified module could not be found. and couldn\'t find any solut

相关标签:
3条回答
  • 2021-02-02 17:42

    It looks like the dll required may just be missing from the directory - you could try copying it from a 2.6 directory into the appropriate path. No guarantees, though.

    0 讨论(0)
  • 2021-02-02 17:45
    1. Download the source code from https://pypi.python.org/pypi/guppy/0.1.10 (or which ever version you need)
    2. Extract the tar file: tar zxf [your guppy tar file]
    3. Go in to the folder: cd guppy-[version]
    4. Notice the setup.py file. Run the setup: sudo python setup.py install

    Guppy is installed.

    0 讨论(0)
  • 2021-02-02 17:54

    I had the same error when I tried to launch python from folder where guppy source files were situated. But out of this directory I had problems with instantiating hpy. Finally I got heapy working on python2.7 by installing it from trunk

    pip install https://guppy-pe.svn.sourceforge.net/svnroot/guppy-pe/trunk/guppy
    
    0 讨论(0)
提交回复
热议问题