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