it's first time using build system semaphore, , i'm having trouble installing scipy while doing build.
specifically, it's complaining blas , lapack not installed. unlike these answers suggests, can't compile of fortran files because semaphore ci doesn't have them installed on machines (nor can install them, because require root).
what proper way of installing scipy in situation?
(if has suggestion of place question on stackexchange, appreciated. i'm not sure if question belongs here.)
it seems travis-ci had similar issue. except resolved pre-installing scipy.
semaphore ci gives passwordless sudo in build environment, can use commands suggested in official documentation in build setup like:
sudo apt-get update sudo apt-get install python python-dev libatlas-base-dev gcc gfortran g++ sudo pip install scipy
Comments
Post a Comment