Rate This Document
Findability
Accuracy
Completeness
Readability

Installing NetCDF

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following command to decompress the NetCDF installation package:
    tar -xvf netcdf-4.4.1.1.tar.gz
  3. Run the following command to go to the directory generated after the decompression:
    cd netcdf-4.4.1.1
  4. Set environment variables before compilation.
    export CPPFLAGS="-I/path/to/HDF5/include -I/path/to/PNETCDF/include"
    export LDFLAGS="-L/path/to/HDF5/lib -L/path/to/PNETCDF/lib -Wl,-rpath=/path/to/HDF5/lib"
    export CFLAGS="-L/path/to/HDF5/lib -L/path/to/PNETCDF/lib - I/path/to/HDF5/include"
  5. Run the following command to perform the configuration:
    ./configure --prefix=/path/to/NETCDF --build=aarch64-unknown-linux-gnu --enable-shared --enable-netcdf-4 --enable-dap --with-pic --disable-doxygen --enable-static --enable-pnetcdf --enable-largefile
  6. Run the following commands to compile and install NetCDF:
    make -j 16
    make install