Changes between Version 2 and Version 3 of ASAPMatplotlibInstall


Ignore:
Timestamp:
08/28/06 15:47:42 (18 years ago)
Author:
Chris Phillips
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ASAPMatplotlibInstall

    v2 v3  
    1010  cd /some/dir
    1111  tar zxvf ~/numpy-0.9.8.tar.gz
    12   cd numpy-0.9.8
    13  
     12  cd numpy-0.9.8 
    1413  python setup.py build
    15 
    16   python setup.py install
    17 
     14  sudo python setup.py install
    1815}}}
    1916
     
    2320 
    2421  cd /some/dir
    25  
    26 tar zxvf ~/matplotlib-0.87.4.tar.gz
    27 
    2822  tar zxvf ~/matplotlib-0.87.4.tar.gz
    2923  cd matplotlib-0.87.4
    3024
     25}}}
     26
     27ASAP currently only uses the tk backend. It is recommends that you only compile in support for tk (unless you know what you are doing and want the other backends). Edit setup.py and set the following variables
     28
     29{{{
     30  BUILD_AGG          = 1
     31  BUILD_GTKAGG       = 0
     32  BUILD_GTK          = 0
     33
     34  BUILD_WXAGG        = 0
     35}}}
     36
     37Then all you have to do is
     38
     39{{{
    3140  python setup.py build
     41  sudo python setup.py install
     42}}}
    3243
     44Note that if you do not have sudo configured you instead would
     45
     46{{{
     47  su
    3348  python setup.py install
    34 
    3549}}}
    3650