Changes between Version 1 and Version 2 of ASAPMatplotlibInstall
- Timestamp:
- 08/04/06 17:55:50 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ASAPMatplotlibInstall
v1 v2 1 1 Obtain source code from http://sourceforge.net/projects/matplotlib/ 2 3 For ASAP 2.1 you need at version >= 0.87 4 5 Newer versions of matplotlib require "numpy" version 0.9.8 (Not >= 1.0). 6 This is available from http://www.numpy.org Make sure you get version 0.9.8. 7 To install numpy 8 9 {{{ 10 cd /some/dir 11 tar zxvf ~/numpy-0.9.8.tar.gz 12 cd numpy-0.9.8 13 14 python setup.py build 15 16 python setup.py install 17 18 }}} 19 20 To install matplotlib 2 21 3 22 {{{ 4 23 5 24 cd /some/dir 6 tar zxvf ~/matplotlib-0.87.3.tar.gz 7 cd matplotlib-0.87.3 25 26 tar zxvf ~/matplotlib-0.87.4.tar.gz 27 28 tar zxvf ~/matplotlib-0.87.4.tar.gz 29 cd matplotlib-0.87.4 8 30 9 31 python setup.py build