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.
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.
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.
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.
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.