home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pynu2030.zip / README.Numeric < prev   
Text File  |  2001-07-09  |  3KB  |  70 lines

  1.                      Numerical Python
  2.  
  3.     Versions after 20.0 require Python 2.0 or later. To take advantage of 
  4.     the "rich comparisons" (i.e., to be able to compare arrays and get
  5.     back a boolean result) you need Python 2.1.
  6.  
  7. Web site: http://numpy.sourceforge.net
  8. Project page: http://sourceforge.net/projects/numpy
  9. Discussion group: numpy-discussion@lists.sourceforge.net
  10.  
  11. ===> Silicon Graphics bug:
  12.     Due to a bug in the SGI compiler's handling of complex
  13.     variables, you must build your *python* without optimization
  14.     on a certain file. Consult the Python installation instructions
  15.     for the details.
  16.  
  17. INSTALLING BINARY DISTRIBUTIONS ON WINDOWS
  18.     Get the .exe installers and simply run them. Python must already be installed.
  19.  
  20. BUILDING AND INSTALLING NUMERIC PTYHON FROM SOURCE
  21.     For Windows get the .zip sources. For other platforms use the .tar.gz sources.
  22.     After unpacking change to the top-level directory.
  23.  
  24.     Using the python into which you wish to install Numeric Python, execute:
  25.  
  26.     python setup.py install  # Core only
  27.             or
  28.     python setup_all.py install  # Core and all optional packages (see below)
  29.  
  30.     To clean up completely after an install, on Unix you can do:
  31.     /bin/rm -fr build Packages/*/build
  32.  
  33.     See the Distutils documentation for many command-line options as to 
  34.     installation locations, etc.
  35.  
  36.     By default Numeric builds itself with a small version of the LAPACK and
  37.     BLAS libraries. See setup.py. To use your own BLAS and LAPACK you will 
  38.     need to edit the settings in setup.py.
  39.  
  40. OPTIONAL PACKAGES 
  41.     Subdirectory Packages contains optional packages you may wish to install.
  42.     Each package has its own setup.py file or you can use the 
  43.     setup_all.py file in the main directory.  You can edit setup_all.py to 
  44.     change the list of packages to be installed.
  45.  
  46.     Package Properties is required for package kinds and package MA.
  47.  
  48. CVS Repository, Bug Tracking, Documentation, Patches, Mailing Lists
  49.  
  50.    Access to the source via CVS, a bug tracking facility, a patch submission
  51.    facility, and the numpy-discussion mailing list are all on the 
  52.    Numerical Python Project page:  http://sourceforge.net/projects/numpy
  53.  
  54.    The Numerical Python Web Site is http://numpy.sourceforge.net. It contains
  55.    links to the project page and the documentation. It also has a few links 
  56.    to related sites.
  57.  
  58. History
  59.  
  60. This software was originally written by Jim Hugunin when he was at MIT, later
  61. at CNRI.
  62.  
  63. Then Paul Dubois of LLNL became the "keeper". LLNL has released any 
  64. contributions to it by LLNL personnel for free redistribution. 
  65. However, many people have contributed to Numpy.  It is a classic open source effort 
  66. that nobody "owns".  So, Numerical Python is placed in the SourceForge under 
  67. the Python license. The LLNL license is in Legal.htm.
  68.  
  69.  -- Paul F. Dubois, Jan. 13, 2000.
  70.