From 81fbba168daeec58277867d2bbaece738c16b54b Mon Sep 17 00:00:00 2001 From: CyanideCN Date: Sat, 2 Dec 2023 23:40:26 -0800 Subject: [PATCH] Fix missing netcdf dll --- post_process.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/post_process.py b/post_process.py index c035c70..16c7ef4 100644 --- a/post_process.py +++ b/post_process.py @@ -4,7 +4,8 @@ ori_dir = 'C:/Miniconda/envs/build/Library/bin' dst_dir = 'C:/eccodes/bin' -for f in ['openjp2.dll', 'libpng16.dll', 'zlib.dll']: +for f in ['openjp2.dll', 'libpng16.dll', 'zlib.dll', 'netcdf.dll', + 'mfhdf.dll', 'hdf5_hl.dll', 'hdf5.dll', 'zip.dll']: print(f'Moving {os.path.join(ori_dir, f)}') shutil.copy2(os.path.join(ori_dir, f), dst_dir)