Sto cercando di creare le librerie richieste in un pacchetto che sto distribuendo. Richiede entrambe le librerie SciPy e NumPy . Durante lo sviluppo, ho installato entrambi usando
apt-get install scipy
che ha installato SciPy 0.9.0 e NumPy 1.5.1 e ha funzionato bene.
Vorrei fare lo stesso usando pip install
- per poter specificare le dipendenze in un setup.py del mio pacchetto.
Il problema è, quando provo:
pip install 'numpy==1.5.1'
funziona benissimo.
Ma allora
pip install 'scipy==0.9.0'
fallisce miseramente, con
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.
Come faccio a farlo funzionare?
blas-devel
e lapack-devel
. Questo non è specificato nel documento, ma deve essere eseguito se si desidera installare utilizzando PIP.
numpy=1.5.1
invece dinumpy==1.5.1
(doppio uguale)?