为什么导入matplotlib.pyplot会更改后端?

时间:2018-10-11 14:09:45

标签: python-3.x matplotlib ssh

我需要使用TkAgg中的matplotlib 后端在我的机器(A)上绘图,同时在另一台机器(B)中通过 ssh 计算)。

我要回答this之类的其他问题,

import matplotlib
matplotlib.use('TkAgg')
matplotlib.get_backend() # prints: 'TkAgg'

import matplotlib.pyplot as plt
matplotlib.get_backend() # prints: 'agg'

# Plotting...
import numpy as np
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)

plt.plot(t, s)
plt.show()

但是给出了错误:

UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.

似乎每次导入matplotlib.pyplot时,它都会切换回默认后端!

我需要做什么?

0 个答案:

没有答案