Changes between Version 14 and Version 15 of InstallDetails
- Timestamp:
- 2009-08-17T12:44:13Z (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallDetails
v14 v15 170 170 === Windows === 171 171 172 The following procedure will install and run Tahoe on Windows :172 The following procedure will install and run Tahoe on Windows. Note that this assumes that you install Python in the default location (C:\Python26), if you choose another location you'll need to adjust the instructions below: 173 173 174 174 1. Download and install Python 2.6.2 from http://www.python.org/ftp/python/2.6.2/python-2.6.2.msi. … … 196 196 1. Download and install MinGW from http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/MinGW%205.1.4/MinGW-5.1.4.exe/download. The installer will prompt you for what components to install. You need the base components plus g++. 197 197 198 2. Configure distutils to use MinGW. To configure distutils to use mingw32, create a file called "distutils.cfg" in C:\Python26\ Libs\distutils, and put in that file:198 2. Configure distutils to use MinGW. To configure distutils to use mingw32, create a file called "distutils.cfg" in C:\Python26\lib\distutils, and put in that file: 199 199 200 200 {{{ … … 203 203 }}} 204 204 205 3. Add the MinGW binary path to your Path variable. To do that, go to the control panel (classic view), double-click "System", click on the "Advanced" tab, click on the "Environment Variables" button, scroll down to the "Path" variable in the "System Variables" list, double-click it, and append ";C:\MinGW\bin" to the path. 205 3. Add the MinGW binary path to your Path variable. To do that, go to the control panel (classic view), double-click "System", click on the "Advanced" tab, click on the "Environment Variables" button, scroll down to the "Path" variable in the "System Variables" list, double-click it, and append ";C:\MinGW\bin" to the path. If you installed MinGW in some place other than C:\MinGW, adjust the path appropriately. 206 206 207 207 After installing the compilers, repeat the "build" and "install" steps.