Changes between Initial Version and Version 1 of NumpyUbuntu64Install


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyUbuntu64Install

    v1 v1  
     1Using the Ubuntu Synaptic package manager, install the following packages:
     2{{{
     3subversion
     4python-dev
     5python-profiler
     6g++
     7python-numpy
     8}}}
     9
     10Of course, if you prefer using the console, you could do:
     11{{{
     12sudo install subversion
     13}}}
     14and so on.
     15
     16You need to specify a special flag for source package builds:
     17{{{
     18export CFLAGS=-fPIC
     19}}}
     20Note: you must execute the above console command in any terminal in which you do the NetCDF and
     21!ScientificPython source builds (below).
     22
     23Next, you need to install NetCDF 4.0.1 from the source package:
     24{{{
     25tar xzf netcdf.tar.gz
     26cd netcdf-4.0.1
     27./configure
     28make check
     29sudo make install
     30}}}
     31
     32Now install !ScientificPython 2.9.0:
     33{{{
     34tar xzf ScientificPython-2.9.0.tar.gz
     35cd ScientificPython-2.9.0
     36python setup.py build --numpy
     37sudo python setup.py install
     38}}}
     39
     40And finally, install matplotlib through Synaptic:
     41{{{
     42python-matplotlib
     43}}}