Changeset 3564

Show
Ignore:
Timestamp:
09/15/07 19:08:22 (1 year ago)
Author:
mscott
Message:

wiki:Schevo

  • documentation updated to refer to python 2.5
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Schevo/doc/SchevoGettingStartedMacOsx.txt

    r3112 r3564  
    77instructions have been tested on the following operating systems: 
    88 
    9 * Mac OSX 10.4.9 on Intel-chip Based Mac 
     9* Mac OSX 10.4.10 on Intel-chip Based Mac 
     10 
     11 
     12Notes on running Python 
     13======================= 
     14 
     15Unless you change your `PATH` environment variable, do not run Python 
     16by running ``python``, as that will invoke the system-installed 
     17Python, which is version 2.3.5 in OSX 10.4. 
     18 
     19Instead, run ``python2.5`` as shown in examples below. 
    1020 
    1121 
     
    1323======================= 
    1424 
    15 We recommend using the `Universal MacPython packages`_ available at 
    16 the `pythonmac.org`_ site. 
     251. At the `Python 2.5.1 release page`_, download the disk image 
     26   (``dmg``) file for Python. For instance, the file at the time of 
     27   this writing is ``python-2.5.1-macosx.dmg``. 
    1728 
    18 .. _Universal MacPython packages: http://pythonmac.org/packages/ 
    19  
    20 .. _pythonmac.org: http://pythonmac.org/ 
    21  
    22 .. _Universal MacPython 2.4: http://pythonmac.org/packages/py24-fat/index.html 
    23  
    24 1. At the `Universal MacPython 2.4`_ page, download the disk image 
    25    (``dmg``) file for Python. For instance, the file at the time of 
    26    this writing is ``python-2.4.4-macosx2006-10-18.dmg``. 
     29.. _Python 2.5.1 release page: http://www.python.org/download/releases/2.5.1/ 
    2730 
    28312. Open the disk image. 
     
    49523. In a terminal, create the environment:: 
    5053 
    51     $ python ~/workingenv.py ~/env/schevo 
     54    $ python2.5 ~/workingenv.py ~/env/schevo 
    5255 
    5356 
  • trunk/Schevo/doc/SchevoGettingStartedUbuntu.txt

    r3112 r3564  
    1010* Ubuntu Linux 6.10 
    1111 
    12 * Ubuntu Linux 7.04 prerelease 
     12* Ubuntu Linux 7.04 
    1313 
    1414Users of other UNIX-derived or UNIX-like operating systems not listed 
     
    1616 
    1717Mac users, see `SchevoGettingStartedMacOsx`:trac:. 
     18 
     19 
     20Notes on running Python 
     21======================= 
     22 
     23With Ubuntu 7.04, or any Linux distribution that uses Python 2.5 as 
     24the default Python, so just run ``python`` when invoking Python as per 
     25the directions below. 
     26 
     27With Ubuntu 6.10, or any Linux distribution that uses Python 2.4 as 
     28the default Python, run ``python2.5`` when invoking Python as per the 
     29directions below. 
    1830 
    1931 
     
    2436packages and compiler tools:: 
    2537 
    26     $ sudo aptitude install build-essential python2.4-dev 
     38    $ sudo aptitude install build-essential python2.5 python2.5-dev 
    2739 
    2840If you do not have administrator privileges, request to have them 
  • trunk/Schevo/doc/SchevoGettingStartedWindows.txt

    r3112 r3564  
    1414============== 
    1515 
    16 1. Download the Windows installer for Python 2.4 by visiting the 
    17    `2.4.4 release page 
    18    <http://www.python.org/download/releases/2.4.4/>`__ and downloading 
    19    the ``python-2.4.4.msi`` file. 
     161. Download the Windows installer for Python 2.5 by visiting the 
     17   `2.5.1 release page 
     18   <http://www.python.org/download/releases/2.5.1/>`__ and downloading 
     19   the ``python-2.5.1.msi`` file. 
    2020 
    21212. Open the ``msi`` file to start the installation process. 
     
    2727   (see `Setting Environment Variables`_ below): 
    2828 
    29    * ``c:\python24`` 
     29   * ``c:\python25`` 
    3030 
    31    * ``c:\python24\scripts`` 
     31   * ``c:\python25\scripts`` 
    3232 
    33335. Test your Python installation by clicking *Start*, *Run...*, and 
     
    3636   the Python interactive shell, which will look similar to this:: 
    3737 
    38      Python 2.4.4 (#71, Oct 18 2006, 08:34:43) ... 
     38     Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) ... 
    3939     Type "help", "copyright", "credits", or "license" ... 
    4040     >>> 
     
    4747 
    48481. Visit the `pywin32 download page 
    49    <http://sourceforge.net/project/showfiles.php?group_id=78018>`__ 
    50    and download the most recent package that ends with ``py2.4.exe``. 
     49   <http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063>`__ 
     50   and download the most recent package that ends with ``py2.5.exe``. 
    5151   For example, at the time of this writing that file would be 
    52    ``pywin32-210.win32-py2.4.exe``. 
     52   ``pywin32-210.win32-py2.5.exe``. 
    5353 
    54542. Open the file you downloaded in step 1 to start the installation 
     
    5656 
    57573. Step through the installer, accepting default values for each step. 
     58 
     594. At the end of the installer, check the install log to see if it 
     60   contains this message at the bottom of the log:: 
     61 
     62     ******************** WARNING ******************** 
     63     It appears that the MFC DLL 'mfc71.dll' is not installed 
     64     Pythonwin will not work without this DLL, and I haven't had the 
     65     time to package it in with the installer. 
     66 
     67     You can download this DLL from: 
     68     http://starship.python.net/crew/mhammond/win32/ 
     69     ************************************************** 
     70 
     71   If you see that message, browse to the `URL it mentions 
     72   <http://starship.python.net/crew/mhammond/win32/>`__ and follow the 
     73   instructions under the `MFC DLLs for Pythonwin` heading for 
     74   downloading and installing the ``mfc71.dll` file. 
    5875 
    5976 
     
    63801. Download `workingenv.py 
    6481   <http://svn.colorstudy.com/home/ianb/workingenv/workingenv.py>`__ 
    65    to ``c:\python24\scripts``. 
     82   to ``c:\python25\scripts``. 
    6683 
    67842. If it doesn't exist, create a ``c:\env`` folder using Windows 
     
    70873. In a command prompt, create the environment:: 
    7188 
    72     python c:\python24\scripts\workingenv.py --site-packages c:\env\schevo 
     89    python c:\python25\scripts\workingenv.py --site-packages c:\env\schevo 
    7390 
    7491 
     
    108125This is how you do so using Microsoft XP: 
    109126 
    110 1. Right-click your `My Computer` icon. 
     1271. Click Start, then right-click your `My Computer` icon. 
    111128 
    1121292. Choose `Properties`.