I have a piece of code that was working fine until last week, but now it's failing with the following error:
AttributeError: module 'fiona' has no attribute 'path'
I’ve ensured that all the necessary libraries are installed and imported. Does anyone have any ideas on what might be going wrong or how I can resolve this issue?
Thanks!
pip install geopandas
pip install fiona
import geopandas as gpd
import fiona
countries = gpd.read_file(gpd.datasets.get_path("naturalearth_lowres"))