Closed jachym closed 6 years ago
A conflict with the shared libraries used by GeoDjango, I presume? Doing pip install --no-binary fiona fiona
is your best bet. Will you try that and let us know if that works?
Does not seem to
$ pip uninstall fiona
....
$ pip install --no-binary all fiona
...
Successfully installed fiona-1.7.11.post2
$ python manage.py shell
>>> import fiona
free(): invalid pointer
Aborted (core dumped)
any other hint?
pip install --no-binary fiona fiona
at last
pip install --no-binary :all: Fiona==1.7.11
worked
thank you
my bad - I should write :all:
instead of all
Expected behavior and actual behavior.
Fiona (and shapely.geometry) does not load to Django project
Steps to reproduce the problem.
When I try to load Fiona to standard Python shell, it works
But trying the same in Django shell fails
The problem seems to be similar to shapely
Operating system
For example: Linux Ubuntu 18.4
Fiona and GDAL version and provenance
1.7.11.post1 and post2 gdal 2.3 (from source)