I am attempting to use the fiona package. This code works on Python on a Linux box. The code starts out: #!/usr/bin/python import sys import fiona import shapely import os . . . The error I'm getting from the import is: Traceback (most recent call last): File "/home/Joel/bin/inshape1.py", line 3, in import fiona File "/cygdrive/c/Python39/Lib/site-packages/fiona/__init__.py", line 46, in _delvewheel_init_patch_1_3_7() File "/cygdrive/c/Python39/Lib/site-packages/fiona/__init__.py", line 34, in _delvewheel_init_patch_1_3_7 os.add_dll_directory(libs_dir) AttributeError: module 'os' has no attribute 'add_dll_directory' I am looking for advice to get past this problem. Thank you!