Changes between Version 20 and Version 21 of InstallUbuntuSvn


Ignore:
Timestamp:
May 25, 2012, 7:20:32 AM (12 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallUbuntuSvn

    v20 v21  
    77{{{
    88sudo apt-get install subversion
    9 sudo apt-get install python-scientific
    109sudo apt-get install python-dev
    1110sudo apt-get install python-matplotlib
    12 sudo apt-get install python-argparse
    1311}}}
    1412
     
    1614
    1715{{{
     16sudo apt-get install python-scientific
     17sudo apt-get install python-argparse
    1818sudo apt-get install python-profiler
    1919}}}
     20
     21For Ubuntu 12.04 we also need python-scientific, but the version
     22being shipped in 12.04 is old (version 2.8) and leads to segmentation
     23faults. So we need to install ScientificPython.2.9.1 from source.
     24
     25First we need to install netcdf support via
     26
     27{{{
     28sudo apt-get install netcdf-bin libnetcdf-dev
     29}}}
     30
     31Now get the ScientificPython.2.9.1 source from
     32
     33{{{
     34https://sourcesup.renater.fr/frs/download.php/3420/ScientificPython-2.9.1.tar.gz
     35}}}
     36
     37Follow this link and the file should download to your machine. Save the file and then extract
     38it to your Downloads directory.
     39
     40You may need to manually extract via the tar command, i.e.
     41
     42{{{
     43tar xvf ScientificPython-2.9.1.tar.gz
     44}}}
     45
     46At the end  you should have a directory {{{ScientificPython-2.9.1}}}
     47
     48Change into the directory and install scientific python via
     49
     50{{{
     51python setup.py build
     52sudo python setup.py install
     53}}}
     54
    2055
    2156