1. ホーム
  2. プログラミング言語
  3. パイソン

matplotlib エラー 表示名がない、$DISPLAY 環境変数がない 解決方法

2022-01-21 12:20:35

matplotlib エラー 表示名がない、$DISPLAY 環境変数がない 解決策

# import this before everything
import matplotlib
matplotlib.use('Agg')

from matplotlib import pyplot as plt

plt.configure() # now is ok

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8