homebrew と pip を使用して scipy と numpy をインストールしました。私は次のことをしました:
brew install python
brew install gfortran
easy_install pip
sudo pip install numpy
sudo pip install scipy
numpy と scipy はどちらも /Library/Python/2.7/site-packages で簡単に見つけることができますが、ターミナルで Python シェルを開いて次のように入力すると:
import numpy
import scipy
私は得る:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy
scipy についても同じです。どうしたの?ピップは、それらがインストールされていると考えているようです。