如何在linux上安装netcdf
答案:2 悬赏:50 手机版
解决时间 2021-04-05 17:38
- 提问者网友:难遇难求
- 2021-04-05 12:43
如何在linux上安装netcdf
最佳答案
- 五星知识达人网友:怀裏藏嬌
- 2021-04-05 12:58
NetCDF文件是一种科学数据存储格式,广泛用于大气、海洋和地球科学。NetCDF也是一个函数库集合,提供给用户一整套使用和操作该种格式数据的方法。该格式是跨平台的,且可以使用C、Fortran和Matlab等多种语言进行操作。
安装过程如下:
(1)从http://www.unidata.ucar.edu/downloads/netcdf/index.jsp官方网站下载源程序包。最新版为4.0.1,我安装的是3.6.3,测试成功。
(2)假设源程序包保存在/home/fengwei/netcdf-3.6.3文件夹下,打算安装在/usr/local/netcdf路径里。进入root后,操作如下:
mkdir /usr/local/netcdf
cd /home/fengwei/netcdf-3.6.3
./configure --prefix=/usr/local/netcdf
make check
make
make install
(3)安装完成后,/usr/local/netcdf/文件夹下存在4个文件,分别为bin,include,lib和share。
(4)针对感兴趣的某一nc文件,编写相应的fortran代码(如test.f90),其中应包括include
'netcdf.inc',并调用NetCDF给定的函数对nc文件进行读取和写入等操作。
(5)编译fortran代码,以intel fortran编译器为例,其他的编译器基本一致;
ifort -c -I/usr/local/netcdf/include test.f90
ifort -o test test.o -L/usr/local/netcdf/lib -lnetcdf
(6)运行
./test
完毕!
安装过程如下:
(1)从http://www.unidata.ucar.edu/downloads/netcdf/index.jsp官方网站下载源程序包。最新版为4.0.1,我安装的是3.6.3,测试成功。
(2)假设源程序包保存在/home/fengwei/netcdf-3.6.3文件夹下,打算安装在/usr/local/netcdf路径里。进入root后,操作如下:
mkdir /usr/local/netcdf
cd /home/fengwei/netcdf-3.6.3
./configure --prefix=/usr/local/netcdf
make check
make
make install
(3)安装完成后,/usr/local/netcdf/文件夹下存在4个文件,分别为bin,include,lib和share。
(4)针对感兴趣的某一nc文件,编写相应的fortran代码(如test.f90),其中应包括include
'netcdf.inc',并调用NetCDF给定的函数对nc文件进行读取和写入等操作。
(5)编译fortran代码,以intel fortran编译器为例,其他的编译器基本一致;
ifort -c -I/usr/local/netcdf/include test.f90
ifort -o test test.o -L/usr/local/netcdf/lib -lnetcdf
(6)运行
./test
完毕!
全部回答
- 1楼网友:蕴藏春秋
- 2021-04-05 13:51
NetCDF文件是一种科学数据存储格式,广泛用于大气、海洋和地球科学。NetCDF也是一个函数库集合,提供给用户一整套使用和操作该种格式数据的方法。该格式是跨平台的,且可以使用C、Fortran和Matlab等多种语言进行操作。
安装过程如下:
(1)从官方网站下载源程序包。最新版为4.0.1,我安装的是3.6.3,测试成功。
(2)假设源程序包保存在/home/fengwei/netcdf-3.6.3文件夹下,打算安装在/usr/local/netcdf路径里。进入root后,操作如下:
mkdir /usr/local/netcdf
cd /home/fengwei/netcdf-3.6.3
./configure --prefix=/usr/local/netcdf
make check
make
make install
(3)安装完成后,/usr/local/netcdf/文件夹下存在4个文件,分别为bin,include,lib和share。
(4)针对感兴趣的某一nc文件,编写相应的fortran代码(如test.f90),其中应包括include
'netcdf.inc',并调用NetCDF给定的函数对nc文件进行读取和写入等操作。
(5)编译fortran代码,以intel fortran编译器为例,其他的编译器基本一致;
ifort -c -I/usr/local/netcdf/include test.f90
ifort -o test test.o -L/usr/local/netcdf/lib -lnetcdf
(6)运行
./test
完毕!
安装过程如下:
(1)从官方网站下载源程序包。最新版为4.0.1,我安装的是3.6.3,测试成功。
(2)假设源程序包保存在/home/fengwei/netcdf-3.6.3文件夹下,打算安装在/usr/local/netcdf路径里。进入root后,操作如下:
mkdir /usr/local/netcdf
cd /home/fengwei/netcdf-3.6.3
./configure --prefix=/usr/local/netcdf
make check
make
make install
(3)安装完成后,/usr/local/netcdf/文件夹下存在4个文件,分别为bin,include,lib和share。
(4)针对感兴趣的某一nc文件,编写相应的fortran代码(如test.f90),其中应包括include
'netcdf.inc',并调用NetCDF给定的函数对nc文件进行读取和写入等操作。
(5)编译fortran代码,以intel fortran编译器为例,其他的编译器基本一致;
ifort -c -I/usr/local/netcdf/include test.f90
ifort -o test test.o -L/usr/local/netcdf/lib -lnetcdf
(6)运行
./test
完毕!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯