1
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?

Python3.10.12で動作が保証できるnumpy/matplotlib/pandasのversionメモ

Posted at

結論

numpy, matplotlib, pandasの依存関係が破壊された時のために安定して動いた時のversionをメモする

❯ pip3 freeze | grep -e matplot -e numpy -e pandas
matplotlib==3.5.0
matplotlib-inline==0.1.6
numpy==1.26.4
pandas==2.2.3

installするときには下記を叩く。

pip3 install matplotlib==3.5.0 matplotlib-inline==0.1.6 numpy==1.26.4 pandas==2.2.3

動作検証

ほんとうはサンプルをいろいろ動かすべきだが今の所それっぽく動くので一旦これでメモする。

import pandas as pd
import numpy as np
import matplotlib as mt

その他の調整memo(自分の環境でだけ必要だった可能性有)

 pip3 install numexpr==2.8.4 bottleneck==1.3.6
1
0
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
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?