简体   繁体   中英

What does "double free or corruption (top)" mean in python?

I get this error every time I type:

from matplotlib.pyplot import close, figure, plot, axis, grid

The error reads:

double free or corruption (top)

What does this mean? How might I address it? This happens even if it is the first thing I type, with no previous commands.

It sounds like a C-level problem, something with the (malloc) heap.

I'd try a newer CPython (up to but not including 3.9), or try removing matplotlib and reinstalling it with your current version of CPython.

BTW, I tried your import with CPython 3.8, and did not get the quoted error; it seemed to import fine. I did this with a freshly-installed matplotlib.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM