Changes between Initial Version and Version 1 of InstallUbuntuSvn


Ignore:
Timestamp:
Nov 17, 2011, 3:19:26 PM (14 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallUbuntuSvn

    v1 v1  
     1Checkout anuga via svn
     2
     3(might need to install svn via the command "sudo apt-get install subversion")
     4
     5
     6Checkout anuga via:
     7
     8svn checkout https://anuga.anu.edu.au/svn/trunk/anuga_core anuga_core
     9
     10Should produce an anuga_core directory.
     11
     12
     13Put the following in your .bashrc file
     14
     15export PYTHONPATH=/home/steve/anuga_core/source
     16
     17(of course change /home/steve to your home directory. )
     18
     19Should rerun your .bashrc file with
     20
     21source .bashrc
     22
     23
     24Need to install some libraries
     25
     26sudo apt-get install python-scientific
     27sudo apt-get install python-dev
     28sudo apt-get install python-matplotlib
     29sudo apt-get install python-profiler
     30
     31
     32Now go to the directory anuga_core
     33
     34compile the anuga files via:
     35
     36python compile_all.py
     37
     38Run the unit tests via:
     39
     40python test_all.py
     41
     42Hopefully everything works (except for the expected 1 failure regarding ghost triangles)