配布しているパッケージに必要なライブラリを作成しようとしています。SciPyライブラリとNumPyライブラリの両方が必要です。開発中に、両方を使用してインストールしました
apt-get install scipy
SciPy 0.9.0 と NumPy 1.5.1 をインストールし、正常に動作しました。
pip install
自分のパッケージの setup.py で依存関係を指定できるようにするために、 - を使用して同じことをしたいと思います。
問題は、私が試したときです:
pip install 'numpy==1.5.1'
それは正常に動作します。
しかしその後
pip install 'scipy==0.9.0'
惨めに失敗し、
raise self.notfounderror(self.notfounderror.__doc__)
numpy.distutils.system_info.BlasNotFoundError:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [blas]) or by setting
the BLAS environment variable.
どうすれば機能しますか?