AttributeError: module 'fiona' has no attribute '_loading'

Viewed 4657

I am new in python and I am trying to work with geopandas library. I have already installed the package using:

conda install -c conda-forge geopandas

but when I try to import the library, I get back: ERROR SCREENSHOT

But searching in my computer directories I have already installed fiona and inside this directory, there is a file "_loading.py"

Isn't it strange that I have both packages installed and I have this error? Thank you in advance

2 Answers

If you are using Jupyter Notebook or JupyterLab, you may just need to restart the kernel for the environment.

Related