Differences between revisions 1 and 2
Revision 1 as of 2007-12-29 04:58:14
Size: 1236
Editor: TFKyle
Comment:
Revision 2 as of 2008-02-05 05:46:30
Size: 1238
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
It should be pretty simple to install python in windows, just download the Python 2.5.x installer from [http://python.org/download/]. it's also probably a good idea to add a few python dirs to your PATH (C:\Python25 by default, if you change it or it goes somewhere else on the system use the other path in the following instructions), to do that you could: It should be pretty simple to install python in windows, just download the Python 2.5.x installer from [[http://python.org/download/]]. it's also probably a good idea to add a few python dirs to your PATH (C:\Python25 by default, if you change it or it goes somewhere else on the system use the other path in the following instructions), to do that you could:

Installing Python in Windows

It should be pretty simple to install python in windows, just download the Python 2.5.x installer from http://python.org/download/. it's also probably a good idea to add a few python dirs to your PATH (C:\Python25 by default, if you change it or it goes somewhere else on the system use the other path in the following instructions), to do that you could:

  • Open the control panel (My Computer -> Control Panel, or in XP+ Start Menu -> Control Panel)

  • In XP+ Change to classic mode if you're not in it already (should have an option on the left side menu)
  • System -> Advanced Tab -> Environment Variables -> scroll down the System variables pane until you see the PATH Variable, double click it to edit it

  • add ;C:\Python25;C:\Python25\Scripts to the end of it (the ; is a directory separator, it specifies that one directory path has ended and the next has started), C:\Python25 contains the python and pythonw executables and the Scripts dir will contain some python programs like bzr after you install them.
  • start up a Command Prompt (Start Menu -> (All Programs in XP, Programs otherwise) -> Accessories -> Command Prompt) and make sure python -V works and prints out Python 2.5.x

Windows/Python (last edited 2008-02-05 05:46:30 by localhost)