I need use some geospatial python packages on my Synapse SparkPool such as geopandas. I was able to install it as described in the documentation geospatial-processing-analytics using the yml file :
name: aoi-env
channels:
- conda-forge
- defaults
dependencies:
- gdal>=3.3.0
- pip>=20.1.1
- azure-storage-file-datalake
- libgdal
- shapely
- pyproj
- pip:
- rasterio
- geopandas
- apache-sedona
However it doesn't work when trying to read data from Data Lake Gen2, it return the following error: 'No such file or directoryDriverError' and I'm pretty shure the path is correct.
I think it may be a dependency problem, so I tried to pass geopandas as a dependency but it doesn't work because it fails to install. After 30 min running the installation process it is cancelled
name: aoi-env
channels:
- conda-forge
- defaults
dependencies:
- gdal>=3.3.0
- pip>=20.1.1
- azure-storage-file-datalake
- libgdal
- shapely
- pyproj
- geopandas
- pip:
- rasterio
- apache-sedona

