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