Python SciPy には BLAS が必要ですか? 質問する

Python SciPy には BLAS が必要ですか? 質問する
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.

このサイトからどの tar をダウンロードする必要がありますか?

fortrans を試しましたが、このエラーが発生し続けます (明らかに環境変数を設定した後)。

ベストアンサー1

BLAS と LAPACK をビルドする手間をかけずに、パッケージ化されたバージョンではなく最新バージョンの SciPy を使用する必要がある場合は、以下の手順に従ってください。

リポジトリから線形代数ライブラリをインストールする(Ubuntuの場合)、

sudo apt-get install gfortran libopenblas-dev liblapack-dev

次に、SciPyをインストールします(SciPyソースをダウンロードした後)。python setup.py installまたは

pip install scipy

場合によっては。

おすすめ記事