Bus errorとSegmentation faultに困ったら見るブログ

物理の研究者による日々の研究生活のメモ書きです ( python/emacs/html/Japascript/シェルスクリプト/TeX/Mac/C言語/Linux/git/tmux/R/ポケモンGO)

【python3, numpy】numpy 2.0.1でpythonコードが実行できなくなった・・・

 

jupyter labでコードを実行してると以下のようなエラーが出てきた

A module that was compiled using NumPy 1.x cannot be run in
NumPy 2.0.1 as it may crash. To support both 1.x and 2.x
versions of NumPy, modules must be compiled with NumPy 2.0.
Some module may need to rebuild instead e.g. with 'pybind11>=2.12'.

If you are a user of the module, the easiest solution will be to
downgrade to 'numpy<2' or try to upgrade the affected module.
We expect that some modules will need time to support NumPy 2.

 

numpyが新しすぎるのが原因みたい

 

なので、numpyをv1の最終版にダウングレードする

今のcondaの仮想環境で、numpyをアンインストール

その後で、numpy 1.24.4をインストールにすることで解決できた

 

参考

paddleocrでpythonがクラッシュする #Python - Qiita