如何确定 matplotlib 使用哪个后端?
我们可以使用 matplotlib.get_backend() 获取后端值。
步骤
导入 matplotlib。
使用 get_backend() 方法返回当前后端的名称。
示例
import matplotlib print("Backend used by matplotlib is: ", matplotlib.get_backend())
输出
Backend used by matplotlib is: GTK3Agg
广告
我们可以使用 matplotlib.get_backend() 获取后端值。
导入 matplotlib。
使用 get_backend() 方法返回当前后端的名称。
import matplotlib print("Backend used by matplotlib is: ", matplotlib.get_backend())
Backend used by matplotlib is: GTK3Agg