Numeric and PIL Files?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • W. Watson

    #1

    Numeric and PIL Files?

    I'm looking at some files that are related to Python:

    Python-2.4.2.msi
    Numeric-24.2.win32-py2.4.exe
    PIL-1.1.5.win32-py2.4.exe

    What are the three files? msi is the install file for MS, but what are the
    other two, and where can I find them? The first one no longer seems
    available on the <http://www.python.org/downloadsite.

    Wayne T. Watson (Watson Adventures, Prop., Nevada City, CA)
    (121.015 Deg. W, 39.262 Deg. N) GMT-8 hr std. time)
    Obz Site: 39° 15' 7" N, 121° 2' 32" W, 2700 feet

    The obituary of Alfred Russel Wallace, a prolific writer to
    the end of his life in his 90s and contemporary of Charles
    Darwin, read "... he laid his pen aside only to die."
    --
    Web Page: <home.earthlink .net/~mtnviews>
  • Gabriel Genellina

    #2
    Re: Numeric and PIL Files?

    En Sat, 03 Feb 2007 00:03:09 -0300, W. Watson <wolf_tracks@in valid.com>
    escribió:
    I'm looking at some files that are related to Python:
    >
    Python-2.4.2.msi
    This is the Windows installer for Python 2.4.2; you should instead use the
    2.4.4 version (last one on the 2.4 series). There should be no
    compatibility issues, and latter releases have many bugs corrected.
    (extension modules must match the Python version up to the 2nd digit).
    You can get it from http://www.python.org/download/
    Numeric-24.2.win32-py2.4.exe
    This is version 24.2 of a numerical library for Python; this is the binary
    install matching Python 2.4
    For new projects, the recommended library is NumPy. See

    PIL-1.1.5.win32-py2.4.exe
    This is Python Imaging Library, available from www.effbot.org. Either
    choose the 1.1.5 or 1.1.6 version, but make sure it matches your python
    version (filename ends in py2.4)

    --
    Gabriel Genellina

    Comment

    Working...