Changes between Version 24 and Version 25 of InstallUbuntuSvn
- Timestamp:
- May 25, 2012, 7:22:54 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallUbuntuSvn
v24 v25 12 12 13 13 === Pre Ubuntu 12.04 === 14 Also need to also install the following package14 Also need to install the following packages 15 15 16 16 {{{ 17 sudo apt-get install python-scientific18 17 sudo apt-get install python-argparse 19 18 sudo apt-get install python-profiler 20 19 }}} 21 20 21 Finally we need scientific python to provide netcdf 22 support. Pre 12.04 just install the package via 23 24 {{{ 25 sudo apt-get install python-scientific 26 }}} 22 27 23 28 === Ubuntu 12.04 === 24 29 25 We need python-scientific, but the version 26 being shipped in 12.04 is old (version 2.8) andleads to segmentation30 For Ubuntu 12.04 the default python-scientific is 31 the old version 2.8, and this leads to segmentation 27 32 faults. So we need to install scientific python version 2.9.1 from source. 28 33 … … 48 53 }}} 49 54 50 At the end you should havea directory {{{ScientificPython-2.9.1}}}55 You should end up with a directory {{{ScientificPython-2.9.1}}} 51 56 52 57 Change into the directory and install scientific python via … … 56 61 sudo python setup.py install 57 62 }}} 58 59 63 60 64