CentOS Stream 9にMatplotlibをインストールする
環境
# cat /etc/redhat-release
CentOS Stream release 9
1.Pythonのバージョンを確認します
# python -V Python 3.9.10
2.pipとsetuptoolsを更新します
# python -m pip install --upgrade pip setuptools
3.matplotlibのインストール
# pip install matplotlib
4.動作確認
ファイル名 12.py
import matplotlib print(matplotlib.__version__)
実行結果
# python 12.py 3.5.1