uesgraphs icon indicating copy to clipboard operation
uesgraphs copied to clipboard

change matplotlib backendd to "Agg"

Open MichaMans opened this issue 6 years ago • 0 comments

Using the visuals function under linux leads to an Error:

ImportError: libGL.so.1: cannot open shared object file: No such file or directory

according to this issue the last comment recommend changing the matplotlib backend to "Agg".

I would change the Visuals class import to:

import matplotlib
matplotlib.use('Agg')

This should solve this

MichaMans avatar Feb 04 '19 08:02 MichaMans