Go to the first, previous, next, last section, table of contents.


UNIX source code version

まず, インストール先のディレクトリを決める必要がある. ここには, 以下のサブディレクトリが置かれる.

これらのサブディレクトリは無ければ自動的に作られる. root 権限がある場合には, `/usr/local' にインストールすることを お勧めする. 以下, このディレクトリを TARGETDIR と書く.

まず PARI ライブラリをインストールする必要がある. `pari.tgz' を入手後, 適当なディレクトリで展開, インストールする.

% gzip -dc pari.tgz | tar xvf -
% cd pari
% ./Configure --prefix=TARGETDIR
% make all
% su 
# make install
# make install-lib-sta

make 中にエラーで止まったら, 以下を実行する.

% cd Oxxx
% make lib-sta
% su
# make install-lib-sta
# make install-include
# exit
%

上の例で, xxx は現在ターゲットとなっている OS の名前を示す. GP はインストールされないが, asir2000 の作成に必要なファイルはインストール される.

`asir2000.tgz' を入手後, 適当なディレクトリで で展開し, 以下の手順でインストールする.

% gzip -dc asir.tgz | tar xf - 
% cd asir2000
% ./configure --prefix=TARGETDIR --with-pari --enable-plot
% make
% su
# make install
# make install-lib
# make install-doc
# exit


Go to the first, previous, next, last section, table of contents.