Import Error Geopandas, Fiona
I have an error with import geopandas, fiona. When I'm trying to import geopandas import geopandas as gpd It returns me ----------------------------------------------------------
Solution 1:
I had same problem and following commands help me.
First of all I added conda channels (last channel has highest priority).
conda config--add channels conda-forge
conda config--add channels anaconda
Then try to create new environment using conda.
conda create -n geoPython3 python=3.6 geopandas=0.4.0 gdal=2.2.4
Let me know if it helps.
Solution 2:
I also experienced this one recently when I tries to install fiona and geopandas in 3.10.
The only fix I found useful was to use a lower version of python (<3.10) to create a new venv.
Post a Comment for "Import Error Geopandas, Fiona"