2024年8月3日土曜日

Matplotlibのグラフが表示されないエラー

matplotlibでUserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.というエラーが出た場合


古いPython version-3.6を使用してmatplotlibを使用した所、UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. というエラーが出てグラフが表示されませんでした。 

 これはGUIバックエンドが入ってない事で起きるエラーで 

 pip install pyqt5 

 とすることで解決しました。

0 件のコメント:

コメントを投稿

Pythonで地図空間データを扱う⑤

ベースの地図が出来た所で、他のデータを被せてみます。 国土地理院の  500mメッシュ別将来推計人口データ  を使用します。 同じく神奈川県のデータ  500m_mesh_suikei_2018_shape_14.zip をダウンロードします。 ベースの地図データと同じ場所に展開...