Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install openblas via apt-get `sudo apt-get install openblas-dev`

Is it possible to install openblas via apt-get like sudo apt-get install openblas-dev?

Seems on ubuntu 14.04 it can't find it.

sudo apt-get install openblas-dev Reading package lists... Done Building dependency tree        Reading state information... Done E: Unable to locate package openblas-dev 
like image 527
mrgloom Avatar asked Apr 07 '16 17:04

mrgloom


People also ask

What is Libopenblas Dev?

What is libopenblas-dev. OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. . Unlike Atlas, OpenBLAS provides a multiple architecture library. . All kernel will be included in the library and dynamically switched to the best architecture at run time (only on amd64, arm64, i386 and ppc64el). .

What is apt get in linux?

What Is apt-get and What Is It Used For? apt-get is a command line tool for interacting with the Advanced Package Tool (APT) library (a package management system for Linux distributions). It allows you to search for, install, manage, update, and remove software. The tool does not build software from the source code.


1 Answers

apt-cache search openblas  libblas-test - Basic Linear Algebra Subroutines 3, testing programs libopenblas-base - Optimized BLAS (linear algebra) library based on GotoBLAS2 libopenblas-dev - Optimized BLAS (linear algebra) library based on GotoBLAS2 

So sudo apt-get install libopenblas-dev solved the problem.

like image 67
mrgloom Avatar answered Oct 21 '22 11:10

mrgloom