安装NETCDF

操作步骤

  1. 使用PuTTY工具,以root用户登录服务器。
  2. 执行以下命令解压NETCDF安装包。

    tar -xvf netcdf-4.4.1.1.tar.gz

  3. 执行以下命令进入解压后的目录。

    cd netcdf-4.4.1.1

  4. 执行以下命令进行配置。

    ./configure --prefix=/path/to/NETCDF --build=aarch64-unknown-linux-gnu --enable-shared --enable-netcdf-4 --enable-dap --with-pic --disable-doxygen --enable-static --enable-largefile CPPFLAGS="-I/path/to/HDF5/include " LDFLAGS="-L/path/to/HDF5/lib -Wl,-rpath=/path/to/HDF5/lib " CFLAGS="-L/path/to/HDF5/lib -I/path/to/HDF5/include "

  5. 执行以下命令进行安装编译。

    make -j 20
    make install