0
0

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.

M1macにmatplotlibを入れる

Last updated at Posted at 2021-10-25

はじめに

M1macでmatplotlibをimportしたらエラーが出る
numpy関連のエラーらしい
TensorFlow-macosをインストールしてあるからnumpyでエラーが出るのはおかしい
調べてみたら追加でパッケージをインストールしないといけないらしいのでまとめる

matplotlibを使えるようにする

  1. numpyをインストール
  2. matplotlibをインストール
  3. libjpegをインストール

1は既にnumpyを入れてる人は不要
ただし私はTensorFlow-macosをインストールした際に一緒にインストールしたものなので、それ以外の方法でインストールした人は知らない

numpyをインストール

私のこの記事を参考にtensorflow-macosをインストール

そしたら一緒にnumpyがインストールされる

matplotlibをインストール

普通にpipでインストール

pip install matplotlib

libjpegをインストール

下のコマンドを叩いく

brew install libjpeg
0
0
2

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?