當import matplotlib.pyplot as ply 出現Segmentation fault (core dumped)

JSLS_Hf發表於2018-11-04

當我在py檔案中匯入matplotlib.pyplot後,在linux shell 執行py檔案時,出現Segmentation fault (core dumped)錯誤提示,谷歌之後,找到了解決的方法:

import matplotlib as mpl
mpl.use('TkAgg')  # or whatever other backend that you want
import matplotlib.pyplot as plt

連結:原問題連結

相關文章