Le système d'exploitation est Mac OS Big Sur. La version python est la 3.6.10. Quand j'ai essayé d'installer "numpy, pandas, matplotlib" sans penser à rien, j'ai eu l'erreur suivante.
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.
La version installée de numpy est trop récente. Il semble. Cela fonctionne lorsque 1.18 est inséré.
pip install numpy==1.18
pip install matplotlib
Recommended Posts