Das Betriebssystem ist Mac OS Big Sur. Die Python-Version ist 3.6.10. Als ich versuchte, "numpy, pandas, matplotlib" zu installieren, ohne an irgendetwas zu denken, bekam ich den folgenden Fehler.
pip install matplotlib
RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy.
RankWarning: Polyfit may be poorly conditioned
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Die installierte Version von numpy ist zu neu. Es scheint. Es funktioniert, wenn 1.18 eingefügt ist.
pip install numpy==1.18
pip install matplotlib
Recommended Posts