Changes between Version 10 and Version 11 of NumpyInstall


Ignore:
Timestamp:
Jun 11, 2009, 1:25:07 PM (15 years ago)
Author:
rwilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyInstall

    v10 v11  
    5656}}}
    5757
    58 You should already have installed ANUGA to some convenient place.
    59 
    6058=== Ubuntu 8.10 - 64 bit ===
    6159
     60Using the Ubuntu Synaptic package manager, install the following packages:
     61{{{
     62subversion
     63python-dev
     64python-profiler
     65g++
     66python-numpy
     67}}}
     68
     69Of course, if you prefer using the console, you could do:
     70{{{
     71sudo install subversion
     72}}}
     73and so on.
     74
     75You need to specify a special flag for source package builds:
     76{{{
     77export CFLAGS=-fPIC
     78}}}
     79Make sure that you perform any builds below in the terminal window you performed the above console command.
     80
     81Next, you need to install !NetCDF 4.0.1 from the source package:
     82{{{
     83tar xzf netcdf.tar.gz
     84cd netcdf-4.0.1
     85./configure
     86make check
     87sudo make install
     88}}}
     89
     90Now install !ScientificPython 2.9.0:
     91{{{
     92tar xzf ScientificPython-2.9.0.tar.gz
     93cd ScientificPython-2.9.0
     94python setup.py build --numpy
     95sudo python setup.py install
     96}}}
     97
     98And finally, install matplotlib through Synaptic:
     99{{{
     100python-matplotlib
     101}}}
    62102
    63103=== Windows ===