• Gdal

    From Jorge Conrado Conforte@21:1/5 to All on Fri Oct 7 08:53:01 2022
    Hi,




    I installed GDAL using the pip command and conda. But, I did:

    import gdal and I had:

    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ModuleNotFoundError: No module named 'gdal'





    I need gdal to remap some data.

    Please, help me




    Conrado

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dioumacor FAYE@21:1/5 to All on Fri Oct 7 13:01:15 2022
    If you are working on ubuntu, you can use this command.
    conda create --name pygdal
    conda activate pygdal
    conda install -c conda-forge gdal
    If installation completes import it from:
    from osgeo import gdal

    Le ven. 7 oct. 2022 à 12:01, "Jorge Conrado Conforte" < jorge.conforte@inpe.br> a écrit :



    Hi,




    I installed GDAL using the pip command and conda. But, I did:

    import gdal and I had:

    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ModuleNotFoundError: No module named 'gdal'





    I need gdal to remap some data.

    Please, help me




    Conrado
    --
    https://mail.python.org/mailman/listinfo/python-list



    --
    Bien à vous,
    --------------------- ------------------ ----------------- -------------------- -----------------
    Dioumacor FAYE doctorant au LPAOSF/ESP/UCAD/BP 5085 Dakar-Fann, Sénégal.
    Tel labo: (00221) 33 825 93 64
    Email: d.faye20171634@zig.univ.sn <d.fayye20171634@univ.zig.sn> Tel: +221773475098 +221783484308
    Physicien en herbe
    Pseudo Skype: dioumacorfaye

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Loris Bennett@21:1/5 to Jorge Conrado Conforte on Fri Oct 7 15:00:13 2022
    Hi Conrado,

    "\"Jorge Conrado Conforte\"" <jorge.conforte@inpe.br> writes:

    Hi,




    I installed GDAL using the pip command and conda. But, I did:

    import gdal and I had:

    Depending on your GDAL version, you might find you have to do

    from osgeo import gdal

    See

    https://gdal.org/api/python_bindings.html#tutorials

    Cheers,

    Loris

    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ModuleNotFoundError: No module named 'gdal'





    I need gdal to remap some data.

    Please, help me




    Conrado
    --
    This signature is currently under construction.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)