Changes between Initial Version and Version 1 of NumpyUbuntu32Install


Ignore:
Timestamp:
Jun 11, 2009, 2:36:47 PM (16 years ago)
Author:
rwilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyUbuntu32Install

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