Python中的内存泄漏

Python中的内存泄漏

本文介绍了Python中的内存泄漏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个运行在庞大数据集上的python代码。

启动程序后,计算机变得不稳定,并且甚至打开konsole以杀死该进程。我假设

是我的内存不足。


我应该做些什么来确保我的代码运行良好而不会变成

不稳定。如果有的话,我应该如何解决内存泄漏问题?我有
a gig of RAM。


感谢所有帮助。

I have a python code which is running on a huge data set. After
starting the program the computer becomes unstable and gets very
diffucult to even open konsole to kill that process. What I am assuming
is that I am running out of memory.

What should I do to make sure that my code runs fine without becoming
unstable. How should I address the memory leak problem if any ? I have
a gig of RAM.

Every help is appreciated.

推荐答案








这篇关于Python中的内存泄漏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 19:45