Reputation: 1399
I have installed GSL using sudo apt-get install gsl-bin
as I am trying to install a package (http://seeslab.info/downloads/network-c-libraries-rgraph/ ) which requires the GNU Scientific Libraries (GSL). However when I run ./configure
for said package I get the error message configure: error: GSL CBLAS library not found
. Why might that be?
Upvotes: 1
Views: 5381
Reputation: 11
You must install libgsl-dev with the command below
sudo apt-get install libgsl-dev
I hope that it solve your problem!
Upvotes: 1