Changes between Version 13 and Version 14 of InstallUbuntuSvn
- Timestamp:
- Dec 18, 2011, 4:51:59 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallUbuntuSvn
v13 v14 6 6 7 7 {{{ 8 sudo apt-get install subversion [[BR]]9 sudo apt-get install python-scientific [[BR]]10 sudo apt-get install python-dev [[BR]]11 sudo apt-get install python-matplotlib [[BR]]12 sudo apt-get install python-profiler [[BR]]8 sudo apt-get install subversion 9 sudo apt-get install python-scientific 10 sudo apt-get install python-dev 11 sudo apt-get install python-matplotlib 12 sudo apt-get install python-profiler 13 13 }}} 14 14 … … 17 17 From your home directory run: 18 18 19 {{{ 19 20 svn checkout !https://anuga.anu.edu.au/svn/trunk/anuga/anuga_core anuga_core 21 }}} 20 22 21 23 Should produce an anuga_core directory in your home directory … … 25 27 Put the following in your .bashrc file (if you use the bash shell. With some version of linux you need to put this command in the file .profile 26 28 29 {{{ 27 30 export PYTHONPATH=/home/steve/anuga_core/source 31 }}} 28 32 29 33 (of course change /home/steve to your home directory. ) … … 31 35 Should rerun your .bashrc file with 32 36 37 {{{ 33 38 source .bashrc 34 39 }}} 35 40 36 41 == Compile ANUGA Code == … … 38 43 Now go to the directory anuga_core and compile the anuga files via: 39 44 45 {{{ 40 46 python compile_all.py 47 }}} 41 48 42 49 == Run Unit tests == … … 44 51 From the anuga_core directory run the unit tests via: 45 52 53 {{{ 46 54 python test_all.py 55 }}} 47 56 48 57 == Conclusion ==