我需要使用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
时,它都会切换回默认后端!
我需要做什么?