[GRASS-user] Extensions

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons <r.stream.basins>…

ERROR: Extension <r.stream.basins> not found

It looks like none of the extensions can be found.

Thank you!

marie-joëlle desgagné wrote

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to
go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons
<r.stream.basins>
...

ERROR: Extension
<r.stream.basins>
not found

It looks like none of the extensions can be found.

Thank you!

which operating system?

see

https://lists.osgeo.org/pipermail/grass-commit/2019-July/045534.html

adapting the addon system after the git switch is still a work in progress.

-----
best regards
Helmut
--
Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html

Hi, I found a way to modify the path on the g.extension script to find the source codes of the tools I want to use and it worked.
I am now trying to launch the script Watershed_GRASS but I get an error message saying that my module is built against version $Revision$ but trying to use version $Revision: 72327 $. I need to rebuild GRASS GIS or untangle multiple installations.

I am not used to programing so I don’t really know how to deal with this situation.

Thank you very much

Marie-Joëlle Desgagné

(attachments)

grass_cmd_output_watershed.txt (1.84 KB)

···

De : grass-user grass-user-bounces@lists.osgeo.org de la part de Helmut Kudrnovsky hellik@web.de
Envoyé : 16 juillet 2019 08:53
À : grass-user@lists.osgeo.org grass-user@lists.osgeo.org
Objet : Re: [GRASS-user] Extensions

marie-joëlle desgagné wrote

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to
go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons
<r.stream.basins>

ERROR: Extension
<r.stream.basins>
not found

It looks like none of the extensions can be found.

Thank you!

which operating system?

see

https://lists.osgeo.org/pipermail/grass-commit/2019-July/045534.html

adapting the addon system after the git switch is still a work in progress.


best regards
Helmut

Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user

I modified the lines 936 to 941 in the g.extension and now I am able to download the precompiled GRASS Addons. The problem was in the base url mentionned in the g.extension script. I am wondering if it has an impact when I try to launch the _GRASS scripts though.

(attachments)

g.extension.py (59.5 KB)

···

De : marie-joëlle desgagné
Envoyé : 22 juillet 2019 15:37
À : Markus Neteler neteler@osgeo.org
Objet : RE: [GRASS-user] Extensions

I modified the lines 936 to 941 in the g.extension and now I am able to download the precompiled GRASS Addons. The problem was in the base url mentionned in the g.extension script. I am wondering if it has an impact when I try to launch the _GRASS scripts though.

    platform = 'x86_64'
base_url = "http://wingrass.fsv.cvut.cz/" \
           "grass%(major)s%(minor)s/%(platform)s/addons/latest" % \
           {'platform': platform,
            'major': version[0], 'minor': version[1],
            'patch': version[2]}

Provenance : Courrier pour Windows 10


De : Markus Neteler neteler@osgeo.org
Envoyé : Monday, July 22, 2019 3:27:34 PM
À : marie-joëlle desgagné mjdesgagne@hotmail.com
Objet : Re: [GRASS-user] Extensions

Hi,

Would you mind to share your change?

Thanks
Markus

marie-joëlle desgagné <mjdesgagne@hotmail.com> schrieb am Mo., 22. Juli 2019, 19:32:

Hi, I found a way to modify the path on the g.extension script to find the source codes of the tools I want to use and it worked.
I am now trying to launch the script Watershed_GRASS but I get an error message saying that my module is built against version $Revision$ but trying to use version $Revision: 72327 $. I need to rebuild GRASS GIS or untangle multiple installations.

I am not used to programing so I don’t really know how to deal with this situation.

Thank you very much

Marie-Joëlle Desgagné

De : grass-user <grass-user-bounces@lists.osgeo.org> de la part de Helmut Kudrnovsky <hellik@web.de>
Envoyé : 16 juillet 2019 08:53
À : grass-user@lists.osgeo.org <grass-user@lists.osgeo.org>
Objet : Re: [GRASS-user] Extensions

marie-joëlle desgagné wrote

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to
go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons
<r.stream.basins>

ERROR: Extension
<r.stream.basins>
not found

It looks like none of the extensions can be found.

Thank you!

which operating system?

see

https://lists.osgeo.org/pipermail/grass-commit/2019-July/045534.html

adapting the addon system after the git switch is still a work in progress.


best regards
Helmut

Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user


Hello. I’ve been suggested this workaround and now Its works fine:

Locate the g.extension.py script, copy and rename it and modify one line (search for cz). (You’ll need an editor like Notepad++ to avoid issues with carriage returns). Then run using File > Launch Script.

base_url = “http://wingrass.fsv.cvut.cz/
“grass%(major)s%(minor)s/%(platform)s/addons/”
“grass-%(major)s.%(minor)s.%(patch)s” %
{‘platform’: platform,
‘major’: version[0], ‘minor’: version[1],
#‘patch’: version[2]} # comment this out
‘patch’: ‘svn’} # add this

El mar., 23 de jul. de 2019 a la(s) 21:31, marie-joëlle desgagné (mjdesgagne@hotmail.com) escribió:

I modified the lines 936 to 941 in the g.extension and now I am able to download the precompiled GRASS Addons. The problem was in the base url mentionned in the g.extension script. I am wondering if it has an impact when I try to launch the _GRASS scripts though.


De : marie-joëlle desgagné
Envoyé : 22 juillet 2019 15:37
À : Markus Neteler <neteler@osgeo.org>
Objet : RE: [GRASS-user] Extensions

I modified the lines 936 to 941 in the g.extension and now I am able to download the precompiled GRASS Addons. The problem was in the base url mentionned in the g.extension script. I am wondering if it has an impact when I try to launch the _GRASS scripts though.

    platform = 'x86_64'
base_url = "[http://wingrass.fsv.cvut.cz/](http://wingrass.fsv.cvut.cz/)" \
           "grass%(major)s%(minor)s/%(platform)s/addons/latest" % \
           {'platform': platform,
            'major': version[0], 'minor': version[1],
            'patch': version[2]}

Provenance : Courrier pour Windows 10


De : Markus Neteler <neteler@osgeo.org>
Envoyé : Monday, July 22, 2019 3:27:34 PM
À : marie-joëlle desgagné <mjdesgagne@hotmail.com>
Objet : Re: [GRASS-user] Extensions

Hi,

Would you mind to share your change?

Thanks
Markus

marie-joëlle desgagné <mjdesgagne@hotmail.com> schrieb am Mo., 22. Juli 2019, 19:32:

Hi, I found a way to modify the path on the g.extension script to find the source codes of the tools I want to use and it worked.
I am now trying to launch the script Watershed_GRASS but I get an error message saying that my module is built against version $Revision$ but trying to use version $Revision: 72327 $. I need to rebuild GRASS GIS or untangle multiple installations.

I am not used to programing so I don’t really know how to deal with this situation.

Thank you very much

Marie-Joëlle Desgagné


De : grass-user <grass-user-bounces@lists.osgeo.org> de la part de Helmut Kudrnovsky <hellik@web.de>
Envoyé : 16 juillet 2019 08:53
À : grass-user@lists.osgeo.org <grass-user@lists.osgeo.org>
Objet : Re: [GRASS-user] Extensions

marie-joëlle desgagné wrote

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to
go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons
<r.stream.basins>

ERROR: Extension
<r.stream.basins>
not found

It looks like none of the extensions can be found.

Thank you!

which operating system?

see

https://lists.osgeo.org/pipermail/grass-commit/2019-July/045534.html

adapting the addon system after the git switch is still a work in progress.


best regards
Helmut

Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user

Yes. I have a similar problem with the r.basin extension. Someone, please help me.

On Mon, Jul 15, 2019, 16:36 marie-joëlle desgagné <mjdesgagne@hotmail.com> wrote:

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons <r.stream.basins>…

ERROR: Extension <r.stream.basins> not found

It looks like none of the extensions can be found.

Thank you!


grass-user mailing list
grass-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-user

I am now trying to launch the script Watershed_GRASS but I get an error

message saying that my module

is built against version $Revision$ but trying to use version $Revision:
72327$. I need to rebuild GRASS >GIS or untangle multiple installations.

which addon are you using here? a python addon? a C binary addon?

the message means that a C binary/exe was build against another GRASS
library than used now in the GRASS session.

-----
best regards
Helmut
--
Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html

Juan Fossati wrote

Yes. I have a similar problem with the r.basin extension. Someone, please
help me.

On Mon, Jul 15, 2019, 16:36 marie-joëlle desgagné &lt;

mjdesgagne@

&gt;
wrote:

Hi, I am currently using Grass Gis version 7.6.1.

I want to add the plug in: r.stream.basins. For that to occur I tried to
go in g.extension and install it, but I get this error message:

Downloading precompiled GRASS Addons

<r.stream.basins>
...

ERROR: Extension

<r.stream.basins>
not found

It looks like none of the extensions can be found.

Thank you!
_______________________________________________
grass-user mailing list

grass-user@.osgeo

https://lists.osgeo.org/mailman/listinfo/grass-user

_______________________________________________
grass-user mailing list

grass-user@.osgeo

https://lists.osgeo.org/mailman/listinfo/grass-user

see

https://lists.osgeo.org/pipermail/grass-dev/2019-July/092972.html

for a related dev discussion.

user input/point of view/ideas very appreciated for this discussion.

-----
best regards
Helmut
--
Sent from: http://osgeo-org.1560.x6.nabble.com/Grass-Users-f3884509.html