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


UNIX source code version

まず PARI ライブラリを install する必要がある. 以下は FreeBSD 上での PARI の installation の例である.

% su
# gzip -dc pari-2.0.17.beta.tgz | tar xf -
# cd pari-2.0.17.beta
# ./Configure
# make install
# make install-lib-sta

`asir2000-src.tgz' を入手後, 適当なディレクトリ において, gzip で展開し, 以下の手順で install する.

% gzip -dc asir.tgz | tar xf - 
% cd asir2000
% ./configure -oxhome /usr/local -pari -plot
% xmkmf -a
% make
% su
# make install
# make install-lib
# make install-doc

上の例で, `/usr/local' はファイルが install されるディレクトリを 表す. 即ち, バイナリファイル `asir'`/usr/local/bin' に install され, ライブラリおよび文書ファイルは `/usr/local/lib' に install される. -oxhome の引数として指定されるディレクトリ は, PARI の install 先もそこであることを意味する. もし Asir が install されるディレクトリを変更する場合, `include/Risa.tmpl' の, 変数 PARIINC および PARILIB の値を適宜変更する 必要がある.


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