Changes between Version 2 and Version 3 of ASAPMatplotlibInstall
- Timestamp:
- 08/28/06 15:47:42 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ASAPMatplotlibInstall
v2 v3 10 10 cd /some/dir 11 11 tar zxvf ~/numpy-0.9.8.tar.gz 12 cd numpy-0.9.8 13 12 cd numpy-0.9.8 14 13 python setup.py build 15 16 python setup.py install 17 14 sudo python setup.py install 18 15 }}} 19 16 … … 23 20 24 21 cd /some/dir 25 26 tar zxvf ~/matplotlib-0.87.4.tar.gz27 28 22 tar zxvf ~/matplotlib-0.87.4.tar.gz 29 23 cd matplotlib-0.87.4 30 24 25 }}} 26 27 ASAP 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 37 Then all you have to do is 38 39 {{{ 31 40 python setup.py build 41 sudo python setup.py install 42 }}} 32 43 44 Note that if you do not have sudo configured you instead would 45 46 {{{ 47 su 33 48 python setup.py install 34 35 49 }}} 36 50