| 1 | == Ubuntu 8.10 - 32 bit == |
| 2 | |
| 3 | Using the Ubuntu Synaptic package manager, install the following packages: |
| 4 | {{{ |
| 5 | subversion |
| 6 | python-dev |
| 7 | python-profiler |
| 8 | g++ |
| 9 | python-psyco |
| 10 | python-numpy |
| 11 | }}} |
| 12 | |
| 13 | Of course, if you prefer using the console, you could do: |
| 14 | {{{ |
| 15 | sudo install subversion |
| 16 | }}} |
| 17 | and so on. |
| 18 | |
| 19 | Next, you need to install NetCDF 4.0.1 from the source package: |
| 20 | {{{ |
| 21 | tar xzf netcdf.tar.gz |
| 22 | cd netcdf-4.0.1 |
| 23 | ./configure |
| 24 | make check |
| 25 | sudo make install |
| 26 | }}} |
| 27 | |
| 28 | Now install !ScientificPython 2.9.0: |
| 29 | {{{ |
| 30 | tar xzf ScientificPython-2.9.0.tar.gz |
| 31 | cd ScientificPython-2.9.0 |
| 32 | python setup.py build --numpy |
| 33 | sudo python setup.py install |
| 34 | }}} |
| 35 | |
| 36 | And finally, install matplotlib through Synaptic: |
| 37 | {{{ |
| 38 | python-matplotlib |
| 39 | }}} |