Changes between Version 3 and Version 4 of ASAPMatplotlibInstall
- Timestamp:
- 05/07/10 09:27:58 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ASAPMatplotlibInstall
v3 v4 1 1 Obtain source code from http://sourceforge.net/projects/matplotlib/ 2 2 3 For ASAP 2.1 you need at version >= 0.873 For ASAP 3.0 you should use version >= 0.99 4 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.5 You also need "numpy" version >= 1.3. 6 This is available from http://www.numpy.org 7 7 To install numpy 8 9 8 {{{ 10 9 cd /some/dir 11 tar zxvf ~/numpy- 0.9.8.tar.gz12 cd numpy- 0.9.810 tar zxvf ~/numpy-x.y.z.tar.gz 11 cd numpy-x.y.z 13 12 python setup.py build 14 13 sudo python setup.py install … … 20 19 21 20 cd /some/dir 22 tar zxvf ~/matplotlib- 0.87.4.tar.gz23 cd matplotlib- 0.87.421 tar zxvf ~/matplotlib-x.y.z.tar.gz 22 cd matplotlib-z.y.z 24 23 25 24 }}}