Project

General

Profile

LegacyDevelopersWin32Environment » History » Version 6

Jens Jensen, 10/28/2013 09:20 PM

1 1 Dan Smith
h1. Setting up a Win32 Development Environment
2
3
h2. Library and Runtime Prerequisites
4
5
Get and install the following in this order:
6
7 6 Jens Jensen
 # "Python 2.7.x":http://python.org/download/releases/2.7.5/
8 1 Dan Smith
 # "PyGTK Win32 All-in-one installer":http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/
9
 # "PyLibXML2":http://users.skynet.be/sbi/libxml-python/
10
 # "PyWin32":http://sourceforge.net/projects/pywin32/files/pywin32/
11
 # "PySerial":http://sourceforge.net/projects/pyserial/files/pyserial/2.5/
12
13 3 Dan Smith
Notes:
14 4 Dan Smith
15 3 Dan Smith
 * For any of the above, be sure to get the latest version, and the py27 variant if/when available.
16
 * If you are on 64-bit Windows, be sure to either download the 32 or 64-bit variants of each of the above. They must all match bitness in order to work together.
17
18 5 Dan Smith
When everything is installed, you will want to make sure that Python is in your system PATH variable:
19
20
h3. Windows XP
21
22
 * On the Desktop or in the Start menu, right-click on *My Computer* and choose *Properties*
23
 * In the dialog that opens, on the *Advanced* tab, click on *Environment Variables*
24
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
25
 * At the end of the existing value, add exactly this string: @;C:\Python27\bin@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon)
26
 * Click the *OK* buttons until you're done.
27
28
h3. Windows Vista/7
29
30
 * In the Windows menu, right-click on the *Computer* item and choose *Properties*
31
 * Click on *Advanced System Settings* on the left
32
 * In the dialog that opens, click on *Environment Variables*
33
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
34
 * At the end of the existing value, add exactly this string: @;C:\Python27\bin@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon)
35
 * Click the *OK* buttons until you're done.
36
37 1 Dan Smith
h2. CHIRP Development Process
38
39
Get and install the mercurial source code management tool:
40
41
 * "Mercurial SCM":http://mercurial.selenic.com/downloads/
42
43
44
h2. Clone the repository
45
46 2 Dan Smith
The next step is to download a copy of the repository. This is done from the command-line, and will create a @chirp.hg/@ directory in your current directory. Thus, you should change to the place you want it to be first. For example:
47 1 Dan Smith
48 2 Dan Smith
<pre>
49
C:\Users\Foo> cd \MyWorkspace
50
C:\MyWorkspace> hg clone http://d-rats.com/hg/chirp.hg
51
</pre>
52 1 Dan Smith
53
h2. Run chirp
54
55 2 Dan Smith
Python should be in your search path from the install, but if not, put it in the system PATH environment variable. Once you do that, you should be able to enter the directory that was created in the clone step above, and run chirpw with python:
56 1 Dan Smith
57 2 Dan Smith
<pre>
58
C:\MyWorkspace> cd chirp.hg
59
C:\MyWorkspace\chirp.hg> python chirpw
60
</pre>