I have python installed via homebrew on my mac, OS 10.9.3
I installed scipy
0.14.0 via pip install -U scipy
, using this gist's flags and the modification of export CC=gcc
, and it was successful and shows up in my site-packages
:
drwxr-xr-x 34 olga admin 1.1K Jun 17 21:01 /usr/local/lib/python2.7/site-packages/scipy
lrwxr-xr-x 1 olga admin 84B Mar 8 13:51 /usr/local/lib/python2.7/site-packages/scipy-0.13.1-py2.7.egg-info -> ../../../Cellar/scipy/0.13.1/lib/python2.7/site-packages/scipy-0.13.1-py2.7.egg-info
drwxr-xr-x 7 root admin 238B Jun 17 21:01 /usr/local/lib/python2.7/site-packages/scipy-0.14.0-py2.7.egg-info
However, when I try to pip install
a local package that requires scipy>=0.14.0
, it keeps downloading and reinstalling! So I'm trying to figure out why my recent version of scipy is not getting detected.
pip list
shows only version 0.13.1:
olgas-mbp-1378:~ olga$ pip show scipy
... packages removed for brevity...
scipy (0.13.1)
... packages removed for brevity ...
pip show
is also unaware of version 0.14.0
olgas-mbp-1378:~ olga$ pip show scipy
---
Name: scipy
Version: 0.13.1
Location: /usr/local/lib/python2.7/site-packages
Requires:
And pip uninstall
doesn't know about any version of scipy
!
olgas-mbp-1378:~ olga$ pip uninstall scipy
Can't uninstall 'scipy'. No files were found to uninstall.
What's going on here? Really hope it's something simple that I'm missing.
FYI, I get the same results whether I do pip
or sudo pip
.