建议使用哪种PyPy内存分析器?

时间:2013-07-25 05:31:43

标签: memory-management profiler pypy

我可以使用哪些工具来监控PyPy的内存消耗?如果该工具可以移植到各种Python解释器(CPython和PyPy)和版本(2.6到3.3),那就更好了。

1 个答案:

答案 0 :(得分:1)

我只知道一个由python社区本身提供的探查器,内存探查器

您可以使用pip或easy_install

下载它
$ easy_install -U memory_profiler # pip install -U memory_profiler

psutil 是推荐使用此探查器的模块。

如果您想从源代码安装它,

$ python setup.py install

最新消息来源可在https://github.com/fabianp/memory_profiler找到。

可以在https://pypi.python.org/pypi/memory_profiler上找到文档,示例,API帮助。