scipy install on mountain lion failing

后端 未结 4 2013
醉话见心
醉话见心 2021-01-04 11:27

When I try to install scipy using pip install scipy it fails with the following traceback

Downloading/unpacking scipy
  Downloading scipy-0.10.1.tar.gz (6.2M         


        
4条回答
  •  走了就别回头了
    2021-01-04 12:30

    I had the same problem in 2015 with MacOSX Yosemite. I think it caused by pip's old version bug. Uninstalling pip and getting newest version of it helps. Get pip from https://pip.pypa.io/en/latest/installing.html and then

    $ sudo pip uninstall scipy
    $ sudo pip install scipy
    

提交回复
热议问题