0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

openblasのインストール(apt-get無)

0
Last updated at Posted at 2020-07-17

openBLASのインストール方法(apt-get無)

openBLASのインストール方法を示します。
apt-getでopenBLASをインストールできますが、どうもインストール先がはっきりとしなくなるので自分はソースコードからインストールしました。

それでは参りましょう。

openBLASのソースコードのダウンロード

通常ダウンロード:
http://www.openblas.net
gitを使う場合:
$git clone https://github.com/xianyi/OpenBLAS.git

ダウンロードは/home/Qiita/Downloadにします。
(本記事作成バージョンではOpenBLAS-0.3.10.tar.gzでした)

openBLASのコンパイルとインストール

インストール先は /opt/openblas とします。

compile&install
$sudo mkdir /opt/openblas
$cd /home/Qiita/Download
$tar -xvf  OpenBLAS-0.3.10.tar.gz
$cd /OpenBLAS-0.3.10
$make
$sudo make install PREFIX=/opt/openblas

終了です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?