Project

General

Profile

LegacyDevelopersWin32Environment » History » Revision 27

Revision 26 (Dan Smith, 12/31/2022 05:19 PM) → Revision 27/28 (Alexandre J. Raymond, 05/23/2024 06:20 PM)

# THIS IS OUTDATED NOW 

 This is only for setting up a *legacy* development environment, which is not useful for current (as of 2022) CHIRP development. See [[DevelopersPython3Environment]] for the proper instructions. It is preserved here only because it may be necessary for some time to be able to create bug fixes for legacy CHIRP. 

 # h1. Setting up a Win32 Development Environment 

 ## {{toc}} 

 h2. Overview 

 Chirp is written in Python, an interpreted language. To run the chirp code directly you need Python installed as well as several other external libraries: 

  * PyGTK - GTK cross-platform GUI GUI, 
  * PySerial - serial port connectivity for Python 
  * PyLibXML2 - XML processing 

 For MS windows, chirp is distributed as a compiled .exe file that installs the compiled code and the necessary runtime dependencies. The compiled .exe files eliminate the need for the Python interpreter. Additional downloads and steps are needed to create chirp installer (.exe) files if you need to distribute your work to other systems for testing. 

 To summarize the steps are: 

 1. 

  # install python 
 1. 
  # install additional python libraries PyGTK, PySerial, PyLibXML2 

 ## h2. Installing Python 

 To run chirp you will need to install Python 2.7.x from either "Python.org":http://python.org or "ActiveState":http://www.activestate.com/activepython.    Do not install Python 3 as chirp is currently written for Python 2.7 and above, but will generally run on Python 2.6.x. 

 

  * [Python 2.7.x](https://python.org/download/releases/2.7.6) 
 "Python 2.7.x":http://python.org/download/releases/2.7.6/ 
  * [ActivePython "ActivePython Community Edition](http://www.activestate.com/activepython/downloads) Edition":http://www.activestate.com/activepython/downloads 

 See the steps below to add Python to your system's path after installation. 
 
 ## 
 

 h2. Library and Runtime Prerequisites 

 In addition to Python, several other libraries are needed for the GTK cross-platform GUI, serial port connectivity, and XML processing. 

 Get and install the following in this order: 

 1. [PyGTK 

  # "PyGTK Win32 All-in-one installer](https://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24) 
 1. [PyLibXML2](https://users.skynet.be/sbi/libxml-python) 
 1. [PyWin32](https://sourceforge.net/projects/pywin32/files/pywin32) 
 1. [PySerial](https://sourceforge.net/projects/pyserial/files/pyserial/2.5) installer":http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/ 
  # "PyLibXML2":http://users.skynet.be/sbi/libxml-python/ 
  # "PyWin32":http://sourceforge.net/projects/pywin32/files/pywin32/ 
  # "PySerial":http://sourceforge.net/projects/pyserial/files/pyserial/2.5/ 

 Notes: 
 

  * For any of the above, be sure to get the latest version, and the py27 variant if/when available. 
 
  * If you are on 64-bit Windows, you must download the versions with the same bitness (either 64-bit or 32-bit) in order for everything to work together, all 32-bit or all 64-bit.  
  
  ** If your intent is to be able to build an .exe for others to test/use, you should use only the 32-bit versions to ensure the generated .exe will install and run on the widest range of Windows systems. 
 
  * On Windows 7, 8.1, and 10, the PyLibXML2 installer will generate an error during the installation about not being able to modify the runtime directory. (This appears to be benign.) 

 When everything is installed, you will want to make sure that Python is in your system PATH variable: 

 ## 


 h2. Putting Python in your path. 

 After installing python, you will need to add it to your path.    The Active State Python installer for ActivePython handles this for you.    If you installed from python.org follow these instructions. 

 ### h3. Windows XP 

  * On the Desktop or in the Start menu, right-click on *My Computer* and choose *Properties* 
  * In the dialog that opens, on the *Advanced* tab, click on *Environment Variables* 
  * Under *System variables*, find *Path*, select it, and then edit *Edit* 
  * At the end of the existing value, add exactly this string: `;C:\Python27` @;C:\Python27@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon) 
  * Click the *OK* buttons until you're done. 

 ### h3. Windows Vista/7 

  * In the Windows menu, right-click on the *Computer* item and choose *Properties* 
  * Click on *Advanced System Settings* on the left 
  * In the dialog that opens, click on *Environment Variables* 
  * Under *System variables*, find *Path*, select it, and then edit *Edit* 
  * At the end of the existing value, add exactly this string: `;C:\Python27\bin` @;C:\Python27\bin@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon) 
  * Click the *OK* buttons until you're done. 

 # h1. CHIRP source code and development process. 

 Get CHIRP chirp from [GitHub](https://github.com/kk7ds/chirp) [github](https://github.com/kk7ds/chirp) 

 # h1. Run CHIRP chirp 

 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: 

 <pre> 
 C:\MyWorkspace> cd chirp.git 
 C:\MyWorkspace\chirp.git> python chirpw 
 </pre>