Hi everyone,
In the blog Full WRF and WPS Installation Example(Intel) , I think there is syntax mistake. The first command in installing netcdf-fortran is
Thanks!
Yifan Zhu
In the blog Full WRF and WPS Installation Example(Intel) , I think there is syntax mistake. The first command in installing netcdf-fortran is
Here we used what so called Chinese double quotes instead of the required English double quotes, which will cause an error below:export LIBS=”-lnetcdf -lhdf5_hl -lhdf5 -lz”
To fix this, simply replace the double quotes with English double quotes.-bash: export: `-lhdf5_hl': not a valid identifier
-bash: export: `-lhdf5': not a valid identifier
-bash: export: `-lz”': not a valid identifier
export LIBS="-lnetcdf -lhdf5_hl -lhdf5 -lz"
Thanks!
Yifan Zhu