1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

pythonでのグラフ描画に困っている人へ

Last updated at Posted at 2020-11-10

python でグラフを書いてみようと matplotlib をインストールしてみたものの、

「ImportError: DLL load failed while importing ft2font: 指定されたモジュールが見つかりません。」

と注意を受けて、グラフが出力されなかった。

ワイの実行環境:
windows10
Python 3.8.6
(以下pip freezeで出力)
certifi==2020.6.20
cycler==0.10.0
kiwisolver==1.2.0
matplotlib==3.3.2
numpy==1.19.1
pandas==1.1.4
Pillow==7.2.0
pyparsing==2.4.7
python-dateutil==2.8.1
pytz==2020.4
six==1.15.0

僕の場合、matplotlib のバージョンを1つ下のやつにダウングレードすることで解決できた。具体的なコマンドは、Anaconda Prompt(anaconda3)上で

pip uninstall matplotlib 
pip install matplotlib== 3.2.2

とした。
エラーメッセージの中に出てきた「ft2font」については、謎のままである。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?