Package is working on every operating system if you install it from the conda
package manager with a command:
conda install -c conda-forge pyinterpolate
Conda installation requires Python in version >= 3.8.
To install pyinterpolate from pip
type in your terminal:
pip install pyinterpolate
I'd like to run Jupyter Notebooks, what should I do?
Install pyinterpolate
along notebook
in your conda environment:
conda create -n [NAME OF YOUR ENV]
conda activate [NAME OF YOUR ENV]
conda install -c conda-forge notebook pyinterpolate
Now you are able to run library from conda notebooks.
libspatialindex_c.so dependency error
With Python==3.7 installation rtree
and GeoPandas
that are requirements for pyinterpolate may be not installed properly
because your operating system does not have libspatialindex_c.so
file. In this case install it from terminal:
LINUX:
sudo apt install libspatialindex-dev
MAC OS:
brew install spatialindex