Project

General

Profile

LegacyDevelopersWin32Environment » History » Version 3

Dan Smith, 12/27/2012 08:27 AM

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
 # "Python 2.7.x":http://python.org/download/releases/2.7.3/
8
 # "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
 * For any of the above, be sure to get the latest version, and the py27 variant if/when available.
15
 * 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.
16
17 1 Dan Smith
h2. CHIRP Development Process
18
19
Get and install the mercurial source code management tool:
20
21
 * "Mercurial SCM":http://mercurial.selenic.com/downloads/
22
23
24
h2. Clone the repository
25
26 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:
27 1 Dan Smith
28 2 Dan Smith
<pre>
29
C:\Users\Foo> cd \MyWorkspace
30
C:\MyWorkspace> hg clone http://d-rats.com/hg/chirp.hg
31
</pre>
32 1 Dan Smith
33
h2. Run chirp
34
35 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:
36 1 Dan Smith
37 2 Dan Smith
<pre>
38
C:\MyWorkspace> cd chirp.hg
39
C:\MyWorkspace\chirp.hg> python chirpw
40
</pre>