Changes between Version 13 and Version 14 of InstallUbuntuSvn


Ignore:
Timestamp:
Dec 18, 2011, 4:51:59 PM (12 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallUbuntuSvn

    v13 v14  
    66
    77{{{
    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]]
     8sudo apt-get install subversion
     9sudo apt-get install python-scientific
     10sudo apt-get install python-dev
     11sudo apt-get install python-matplotlib
     12sudo apt-get install python-profiler
    1313}}}
    1414
     
    1717From your home directory run:
    1818
     19{{{
    1920svn checkout !https://anuga.anu.edu.au/svn/trunk/anuga/anuga_core anuga_core
     21}}}
    2022
    2123Should produce an anuga_core directory in your home directory
     
    2527Put 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
    2628
     29{{{
    2730export PYTHONPATH=/home/steve/anuga_core/source
     31}}}
    2832
    2933(of course change /home/steve to your home directory. )
     
    3135Should rerun your .bashrc file with
    3236
     37{{{
    3338source .bashrc
    34 
     39}}}
    3540
    3641== Compile ANUGA Code ==
     
    3843Now go to the directory anuga_core and compile the anuga files via:
    3944
     45{{{
    4046python compile_all.py
     47}}}
    4148
    4249== Run Unit tests ==
     
    4451From the anuga_core directory run the unit tests via:
    4552
     53{{{
    4654python test_all.py
     55}}}
    4756
    4857== Conclusion ==