Changeset 3564
- Timestamp:
- 09/15/07 19:08:22 (1 year ago)
- Files:
-
- trunk/Schevo/doc/SchevoGettingStartedMacOsx.txt (modified) (3 diffs)
- trunk/Schevo/doc/SchevoGettingStartedUbuntu.txt (modified) (3 diffs)
- trunk/Schevo/doc/SchevoGettingStartedWindows.txt (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Schevo/doc/SchevoGettingStartedMacOsx.txt
r3112 r3564 7 7 instructions have been tested on the following operating systems: 8 8 9 * Mac OSX 10.4.9 on Intel-chip Based Mac 9 * Mac OSX 10.4.10 on Intel-chip Based Mac 10 11 12 Notes on running Python 13 ======================= 14 15 Unless you change your `PATH` environment variable, do not run Python 16 by running ``python``, as that will invoke the system-installed 17 Python, which is version 2.3.5 in OSX 10.4. 18 19 Instead, run ``python2.5`` as shown in examples below. 10 20 11 21 … … 13 23 ======================= 14 24 15 We recommend using the `Universal MacPython packages`_ available at 16 the `pythonmac.org`_ site. 25 1. 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``. 17 28 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/ 27 30 28 31 2. Open the disk image. … … 49 52 3. In a terminal, create the environment:: 50 53 51 $ python ~/workingenv.py ~/env/schevo54 $ python2.5 ~/workingenv.py ~/env/schevo 52 55 53 56 trunk/Schevo/doc/SchevoGettingStartedUbuntu.txt
r3112 r3564 10 10 * Ubuntu Linux 6.10 11 11 12 * Ubuntu Linux 7.04 prerelease12 * Ubuntu Linux 7.04 13 13 14 14 Users of other UNIX-derived or UNIX-like operating systems not listed … … 16 16 17 17 Mac users, see `SchevoGettingStartedMacOsx`:trac:. 18 19 20 Notes on running Python 21 ======================= 22 23 With Ubuntu 7.04, or any Linux distribution that uses Python 2.5 as 24 the default Python, so just run ``python`` when invoking Python as per 25 the directions below. 26 27 With Ubuntu 6.10, or any Linux distribution that uses Python 2.4 as 28 the default Python, run ``python2.5`` when invoking Python as per the 29 directions below. 18 30 19 31 … … 24 36 packages and compiler tools:: 25 37 26 $ sudo aptitude install build-essential python2. 4-dev38 $ sudo aptitude install build-essential python2.5 python2.5-dev 27 39 28 40 If you do not have administrator privileges, request to have them trunk/Schevo/doc/SchevoGettingStartedWindows.txt
r3112 r3564 14 14 ============== 15 15 16 1. Download the Windows installer for Python 2. 4by visiting the17 `2. 4.4release page18 <http://www.python.org/download/releases/2. 4.4/>`__ and downloading19 the ``python-2. 4.4.msi`` file.16 1. 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. 20 20 21 21 2. Open the ``msi`` file to start the installation process. … … 27 27 (see `Setting Environment Variables`_ below): 28 28 29 * ``c:\python2 4``29 * ``c:\python25`` 30 30 31 * ``c:\python2 4\scripts``31 * ``c:\python25\scripts`` 32 32 33 33 5. Test your Python installation by clicking *Start*, *Run...*, and … … 36 36 the Python interactive shell, which will look similar to this:: 37 37 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) ... 39 39 Type "help", "copyright", "credits", or "license" ... 40 40 >>> … … 47 47 48 48 1. 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``. 51 51 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``. 53 53 54 54 2. Open the file you downloaded in step 1 to start the installation … … 56 56 57 57 3. Step through the installer, accepting default values for each step. 58 59 4. 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. 58 75 59 76 … … 63 80 1. Download `workingenv.py 64 81 <http://svn.colorstudy.com/home/ianb/workingenv/workingenv.py>`__ 65 to ``c:\python2 4\scripts``.82 to ``c:\python25\scripts``. 66 83 67 84 2. If it doesn't exist, create a ``c:\env`` folder using Windows … … 70 87 3. In a command prompt, create the environment:: 71 88 72 python c:\python2 4\scripts\workingenv.py --site-packages c:\env\schevo89 python c:\python25\scripts\workingenv.py --site-packages c:\env\schevo 73 90 74 91 … … 108 125 This is how you do so using Microsoft XP: 109 126 110 1. Right-click your `My Computer` icon.127 1. Click Start, then right-click your `My Computer` icon. 111 128 112 129 2. Choose `Properties`.
