Skip to content

Commit

Permalink
Fix missing netcdf dll
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanideCN committed Dec 3, 2023
1 parent 623cd7c commit 81fbba1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 81fbba1

Please sign in to comment.