Closed janddd closed 5 years ago
Thanks for reporting this issue. It was fix by #33 but not published yet, you can install directly:
pip3 install --upgrade git+https://github.com/ustroetz/python-osrm.git
Hello, any chance to publish the fix. It undermines an excellent library!
im getting this error whil trying to import osrm. Any fix? ImportError: cannot import name 'griddata' from 'matplotlib.mlab'
hi, i am also still getting this error, any updates?
I am getting this errors as well
I was able to temporarily resolve it by going into extra.py
that caused the problem and replacing
from matplotlib.mlab import griddata
with from scipy.interpolate import griddata
.
Thanks a lot man @zhaomh1998 !
Turns out griddata
was removed from matplotlib
.
A helpful example of how to convert your matplotlib's griddata
to scipy's griddata
is given in the Olivier Gauthe's comment under this StackOverflow post.
I get the following error when importing this module.
It seems that griddata from matplotlib.mlab is removed from the latest matplotlib versions.
See also link: