I'm trying to install GDAL osgeo lib into Python 3.6 on Debian Stretch
I installed neccessary packages like:
sudo apt-get update && sudo apt-get install -y \
binutils \
libproj-dev \
gdal-bin \
libgdal-dev \
python3-gdal \
python3-pip \
python-numpy \
python-dev \
That installation works for Python 2.7 and Python <= 3.5.
But in interpreter I'm receiving following error:
>>> import osgeo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'osgeo'
Do you know any solution for fixing that?