Installing GSL
Procedure
- Use PuTTY to log in to the server as the root user.
- Use an SFTP tool to upload the GSL installation package to the /path/to/GSL directory.
- Run the following command to decompress the installation package:
cd /path/to/GSL && tar -zxf gsl-2.5.0.tar.gz
- Run the following command to go to the directory generated after the decompression:
cd gsl-2.5.0
- Run the following commands to perform the compilation and installation:
mkdir build cd build ../configure --prefix=/path/to/GSL make -j 32 make install
Parent topic: Configuring the Compilation Environment