Hi Audrey,
On 3 July 2013 10:15, Audrey L <
audrey...@gmail.com> wrote:
> - After installing numpy and scipy separtely as per the instructions at
>
https://github.com/ferrouswheel/mdig
>
> mkvirtualenv mdig
> pip install numpy
> pip install scipy
>
> the graphic interface of Grass does not work anymore.
>> Error wxGui reguires wxpython.
> I could manage to reinstall all packages required to run Grass but wanted to
> notify the issue
Unfortunately using a virtualenv hides all the python libraries that
the GRASS user interface uses. I probably didn't notice this because I
tend to work on the command line.
> When I want to custom Grass modules as per the instructions at
>
https://github.com/ferrouswheel/mdig
>
> cd grass-modules
> sudo make MODULE_TOPDIR=/usr/lib/grass64
> Makefile:17: /usr/lib/grass64/include/Make/Dir.make: No such file or
> directory
> make: *** No rule to make target `/usr/lib/grass64/include/Make/Dir.make'.
> Stop.
Is there a directory called "/usr/lib/grass64"? It will only be called
this if you installed the Ubuntu version of GRASS.
If you installed from source code originally, then the correct
directory to use might be /usr/local/grass-6.4.3svn/
> The file include does not exists.
> I tried to install grass from the source and to run
>
> cd mdig/grass-modules
> export GRASS_SRC=~/src/grass64_release
> make -S MODULE_TOPDIR=$GRASS_SRC
> Makefile:17: /home/audrey/src/grass64_release/include/Make/Dir.make: No such
> file or directory
> make: *** No rule to make target
> `/home/audrey/src/grass64_release/include/Make/Dir.make'. Stop.
>
> Am I doing something wrong?
> Thanks for your help
Check if the grass64_release/include/Make directory exists.
If you the "make" files don't exist, then it might because
"./configure" hasn't been run. ./configure will check that your
computer has all the correct dependencies before generating the make
files needed for the grass-modules to be built.
Hope that helps!
Joel