Difference between revisions of "インストールでのトラブルシューティング"

From salmon
Jump to: navigation, search
(Created page with "= Installation of CMake = The [https://cmake.org/|CMake CMake] is a cross-platform build tool. In order to build the SALMON from the source code, the CMake of version 3.0.2 o...")
 
(Installation of BLAS/LAPACK)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Installation of CMake =
+
= CMakeのインストール =
  
The [https://cmake.org/|CMake CMake] is a cross-platform build tool.
+
[https://cmake.org/|CMake CMake]は、多様なプラットフォームに適合したビルドツールです。
In order to build the SALMON from the source code, the CMake of version 3.0.2 or later is required on your system.
+
SALMONをソースコードからビルドするために、バージョン3.0.2以降のCMakeが必要です。
 +
以下の3通りの方法のどれかに従い、インストールを行うことができます。
  
 +
== コンパイル済みバイナリのインストール ==
  
== Installation of pre-compiled binary ==
+
バイナリ配布を、[https://cmake.org/download/  download page]から得ることができます。
 
+
最初に、SALMONをインストールしたディレクトリに移動してください。
 
 
You can get the binary distribution from the [https://cmake.org/download/  download page].
 
First, move to the installation directory of salmon,
 
 
<pre>
 
<pre>
 
cd <SALMON_INSTALLATION_DIRECTORY>
 
cd <SALMON_INSTALLATION_DIRECTORY>
 
</pre>
 
</pre>
and download the binary distribution ( <code>cmake-<VERSION>-<PLATFORM>.tar.gz</code>) appropriate for your platform.
+
そしてあなたのプラットフォームに適合するバイナリ配布( <code>cmake-<VERSION>-<PLATFORM>.tar.gz</code>)をダウンロードしてください。
You can do it by copy the URL of download link from the browser, and use <code>wget</code> command:
+
ブラウザからダウンロードのリンク先をコピーして、<code>wget</code>コマンドを用いて次のように行います:
 
<pre>
 
<pre>
 
wget https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz
 
wget https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz
 
</pre>
 
</pre>
In this document, we will use version 3.8.2 as an example. You can unpack the archive
+
このドキュメントでは、例としてバージョン3.8.2を使うことにします。次にダウンロードしたアーカイブを解凍します。
 
<pre>
 
<pre>
 
tar -zxvf cmake-3.8.2-Linux-x86_64.tar.gz
 
tar -zxvf cmake-3.8.2-Linux-x86_64.tar.gz
 
</pre>
 
</pre>
and you will have the binary <code>make-3.8.2-Linux-x86_64/bin/cmake</code>
+
これで、バイナリ<code>make-3.8.2-Linux-x86_64/bin/cmake</code>が得られます。
To utilize the <code>cmake</code> command,  the executable are settled inside the directory specified in your <code>$PATH</code>.
 
  
If you use the bash shell, you edit <code>~/.bashrc</code> and append the line:
+
次に、<code>cmake</code>コマンドを実行するためには、実行ファイルを<code>$PATH</code>で指定したディレクトリの内部に置くことが必要であることに注意してください。あなたがbash shellを用いている場合は、<code>~/.bashrc</code>を編集し、次の行を追加します:
 
<pre>
 
<pre>
 
export PATH=<SALMON_INSTALLATION_DIRECTORY>/cmake-3.8.2-Linux-x86_64/bin:$PATH
 
export PATH=<SALMON_INSTALLATION_DIRECTORY>/cmake-3.8.2-Linux-x86_64/bin:$PATH
 
</pre>
 
</pre>
, and reload the configuration <code>source ~/.bashrc</code>.
+
そして、設定を再読み込みします:
 
+
<pre>
 
+
source ~/.bashrc
 +
</pre>
  
 +
== パッケージマネージャによるインストール ==
  
== Installation by package manager ==
+
Unix/Linuxの環境によっては、パッケージマネージャを利用してCMakeツールを以下の手続きで簡単にインストールすることができます:
 
 
For several UNIX/Linux environment, your system already has the built-in package manager.
 
and it will provide the most convenient way to install the cmake tools as below:
 
  
 
=== Debian/Ubuntu Linux ===
 
=== Debian/Ubuntu Linux ===
  
<pre>sudo apt-get install cmake</pre>
+
<pre>
 +
sudo apt-get install cmake
 +
</pre>
  
 
=== Fedora Linux/CentOS ===
 
=== Fedora Linux/CentOS ===
  
<pre>sudo yum install cmake</pre>
+
<pre>
 +
sudo yum install cmake
 +
</pre>
  
 
=== openSUSE Linux ===
 
=== openSUSE Linux ===
  
<pre>sudo zypper install cmake</pre>
+
<pre>
 +
sudo zypper install cmake
 +
</pre>
  
 +
== ソースコードからのインストール ==
  
== Installation from source code ==
+
ソースコードを[https://cmake.org/download/ download page]から得ることができます。
 
+
ここでは例として、バージョン3.8.2を用います。
You can get the source code distribution from the [https://cmake.org/download/ download page].
+
次のようにアーカイブを<code>wget</code>コマンドでダウンロードし解凍します:
In this time, we will use the cmake version 3.8.2 as an example.
 
Download the archive by <code>wget</code> comamnd and unpack it as below:
 
 
<pre>
 
<pre>
 
wget https://cmake.org/files/v3.8/cmake-3.8.2.tar.gz
 
wget https://cmake.org/files/v3.8/cmake-3.8.2.tar.gz
Line 62: Line 64:
 
</pre>
 
</pre>
  
And, move to the unpacked directory and build.
+
そして、解凍したディレクトリに移動し、ビルドをします:
<pre>  
+
<pre>
 
cd cmake-3.8.2
 
cd cmake-3.8.2
 
./configure --prefix=INSTALLATION_DIRECTORY
 
./configure --prefix=INSTALLATION_DIRECTORY
Line 69: Line 71:
 
make install
 
make install
 
</pre>
 
</pre>
(replace <code>INSTALLATION_DIRECTORY</code> to your installation directory.)
+
(<code>INSTALLATION_DIRECTORY</code>は、あなたが解凍したディレクトリに置き替えてください。)
 
 
To utilize the <code>cmake</code> command,  the executable are settled inside the directory specified in your <code>$PATH</code>.
 
  
If you use the bash shell, you edit <code>~/.bashrc</code> and append the line:
+
次に、<code>cmake</code>コマンドを実行するためには、実行ファイルを<code>$PATH</code>で指定したディレクトリの内部に置くことが必要であることに注意してください。あなたがbash shellを用いている場合は、<code>~/.bashrc</code>を編集し、次の行を追加します:
 
<pre>
 
<pre>
 
export PATH=INSTALLATION_DIRECTORY/bin:$PATH
 
export PATH=INSTALLATION_DIRECTORY/bin:$PATH
 
</pre>
 
</pre>
, and reload the configuration <code>source ~/.bashrc</code>.
+
そして、設定を再読み込みします:
 
+
<pre>
 
+
source ~/.bashrc
 +
</pre>
  
= Installation of BLAS/LAPACK =
+
= BLAS/LAPACKのインストール =

Latest revision as of 15:00, 3 February 2018

CMakeのインストール

CMakeは、多様なプラットフォームに適合したビルドツールです。 SALMONをソースコードからビルドするために、バージョン3.0.2以降のCMakeが必要です。 以下の3通りの方法のどれかに従い、インストールを行うことができます。

コンパイル済みバイナリのインストール

バイナリ配布を、download pageから得ることができます。 最初に、SALMONをインストールしたディレクトリに移動してください。

cd <SALMON_INSTALLATION_DIRECTORY>

そしてあなたのプラットフォームに適合するバイナリ配布( cmake-<VERSION>-<PLATFORM>.tar.gz)をダウンロードしてください。 ブラウザからダウンロードのリンク先をコピーして、wgetコマンドを用いて次のように行います:

wget https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz

このドキュメントでは、例としてバージョン3.8.2を使うことにします。次にダウンロードしたアーカイブを解凍します。

tar -zxvf cmake-3.8.2-Linux-x86_64.tar.gz

これで、バイナリmake-3.8.2-Linux-x86_64/bin/cmakeが得られます。

次に、cmakeコマンドを実行するためには、実行ファイルを$PATHで指定したディレクトリの内部に置くことが必要であることに注意してください。あなたがbash shellを用いている場合は、~/.bashrcを編集し、次の行を追加します:

export PATH=<SALMON_INSTALLATION_DIRECTORY>/cmake-3.8.2-Linux-x86_64/bin:$PATH

そして、設定を再読み込みします:

source ~/.bashrc

パッケージマネージャによるインストール

Unix/Linuxの環境によっては、パッケージマネージャを利用してCMakeツールを以下の手続きで簡単にインストールすることができます:

Debian/Ubuntu Linux

sudo apt-get install cmake

Fedora Linux/CentOS

sudo yum install cmake

openSUSE Linux

sudo zypper install cmake

ソースコードからのインストール

ソースコードをdownload pageから得ることができます。 ここでは例として、バージョン3.8.2を用います。 次のようにアーカイブをwgetコマンドでダウンロードし解凍します:

wget https://cmake.org/files/v3.8/cmake-3.8.2.tar.gz
tar -zxvf cmake-3.8.2.tar.gz

そして、解凍したディレクトリに移動し、ビルドをします:

cd cmake-3.8.2
./configure --prefix=INSTALLATION_DIRECTORY
make
make install

(INSTALLATION_DIRECTORYは、あなたが解凍したディレクトリに置き替えてください。)

次に、cmakeコマンドを実行するためには、実行ファイルを$PATHで指定したディレクトリの内部に置くことが必要であることに注意してください。あなたがbash shellを用いている場合は、~/.bashrcを編集し、次の行を追加します:

export PATH=INSTALLATION_DIRECTORY/bin:$PATH

そして、設定を再読み込みします:

source ~/.bashrc

BLAS/LAPACKのインストール