coba ini?
import matplotlib,os
r = os.system('python -c "import matplotlib.pyplot as plt;plt.figure()"')
if r != 0:
matplotlib.use('Agg')
import matplotlib.pyplot as plt
fig = plt.figure()
fig.savefig('myfig.png')
else:
import matplotlib.pyplot as plt
fig = plt.figure()
plt.show()
Anda dapat mendeteksi secara langsung jika Anda memiliki tampilan dengan modul OS di python. Dalam kasus saya ini adalah
>>> import os
>>> os.environ["DISPLAY"]
':0.0'
Kode di bawah berfungsi untuk saya di Linux dan Windows (yang mengasumsikan ada perangkat tampilan):
import os
import matplotlib
if os.name == 'posix' and "DISPLAY" not in os.environ:
matplotlib.use('Agg')
Lihat https://stackoverflow.com/a/1325587/896111.
Perhatikan bahwa baris matplotlib.use('Agg')
harus muncul setelah impor pertama matplotlib
(jika tidak, Anda akan mendapatkan kesalahan).