Cannot import gdal in jupyter notebook
Thomas Passin
list1 at tompassin.net
Tue Oct 11 15:38:54 EDT 2022
On Windows, when I tried to install gdal using pip, it needed to compile
part of it. I'm not set up with the Microsoft compiler and header
files, so that failed. If you are on Windows, you will need to look for
a binary wheel to install, or install and configure the compiler and
header files.
On 10/11/2022 11:53 AM, Abdul Haseeb Azizi wrote:
> Hi everyone,
> I am new to python and I am trying to utilize this code "from osgeo import gdal". I installed python 3.10 and also I installed anaconda3 to solve this matter but I could not succeed. When I run that code I get the following error.
> ---------------------------------------------------------------------------
> ModuleNotFoundError Traceback (most recent call last)
> Cell In [1], line 1
> ----> 1 from osgeo import gdal
>
> ModuleNotFoundError: No module named 'osgeo'
>
> I also tried to create anaconda environment and enter the following codes:
> conda crate --name pygdal
> conda activate pygdal
> conda install -c conda-forge gdal
>
> I don't what is the problem. Any help is appreciated to solve this matter.
> Looking forward to hear from you.
>
> with regards
> Abdul
More information about the Python-list
mailing list