Installing GSL
Procedure
- Use PuTTY to log in to the server as the root user.
- Download the GSL installation package.
cd /path/to/gsl wget http://mirrors.ustc.edu.cn/gnu/gsl/gsl-2.6.tar.gz
- Decompress the GSL installation package.
tar xvf gsl-2.6.tar.gz
- Go to the directory generated after the decompression.
cd gsl-2.6
- Compile and install GSL.
./configure --prefix=/path/to/gsl make -j make install
Parent topic: Configuring the Compilation Environment