Hi Amir,
Thanks for your question.
This error is caused by two dependencies - Fiona and GDAL, installing them on Windows with pip is problematic.
Base on our email communications, your solution is to switch to conda as your python environment.
I'm putting here another solution, which doesn't need conda.
Instead, we download Fiona and GDAL's wheel files (
https://www.lfd.uci.edu/~gohlke/pythonlibs/) and manually install them.
For example, if you are using Python3.8:
1. Go to
https://www.lfd.uci.edu/~gohlke/pythonlibs/ and download
GDAL-3.1.4-cp38-cp38-win_amd64.whl and
Fiona-1.8.18-cp38-cp38-win_amd64.whl
here cp38 means python3.8.
2. pip install GDAL-3.1.4-cp38-cp38-win_amd64.whl
3. pip install Fiona-1.8.18-cp38-cp38-win_amd64.whl
Then you'll be able to:
pip install BRAILS