M1 安装pandas报错解决方法

  • 问题:pip install pandas报错command errored out with exit status 1
  • 解决方法:
     brew install openblas
    
     pip3 install cython
    
     OPENBLAS="$(brew --prefix openblas)" pip3 install numpy --no-use-pep517
    
     OPENBLAS="$(brew --prefix openblas)" pip3 install pandas --no-use-pep517

     

你可能感兴趣的:(Django,python,pandas)