Changes between Version 2 and Version 3 of InstallViewer


Ignore:
Timestamp:
Jun 5, 2012, 8:47:42 PM (12 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallViewer

    v2 v3  
    1 = Install Viewer on Ubuntu =
     1= Installation of the Viewer on Ubuntu =
    22
    3 The {{{anuga-viewer}}} is built on top of {{{openscenegraph}}} among other packages.
     3== Packages to Install ===
    44
    5 So we must first install the required packages
     5Install the following packages.
    66
    7 So the first thing we must install is {{{openscenegraph}}}
     7{{{
     8sudo apt-get install libopenscenegraph-dev
     9sudo apt-get install libgdal-dev
     10sudo apt-get install make
     11}}}
    812
     13== Download the Code ==
     14The latest version of the code is available from {{{googlecode}}}.
     15
     16If subversion has not  been install do that now via
     17
     18{{{
     19sudo apt-get install subversion
     20}}}
     21
     22From your home directory, download the anuga viewer code via
     23
     24{{{
     25svn checkout http://anuga-viewer.googlecode.com/svn/trunk/ anuga-viewer
     26}}}
     27
     28Change into the new directory {{{anuga-viewer}}}. From this directory build and install the viewer via
     29
     30{{{
     31make
     32make install
     33}}}
     34
     35
     36
     37