scipy install on mountain lion failing

后端 未结 4 2015
醉话见心
醉话见心 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:11

    This seems to be an issue with pip and numpy, which doesn't copy the compiled libraries into the site-packages directory.

    You could install using pip into a virtualenv (which worked for me) or install from source using the

    python setup.py install
    

    method.

    There are some comments about issue here:

    http://www.thisisthegreenroom.com/2011/installing-python-numpy-scipy-matplotlib-and-ipython-on-lion/

提交回复
热议问题