Home > Article > Backend Development > Install Ulipad editor on Windows system
UliPad is a very good domestic Python IDE, developed by limodou. This IDE itself is written in Python+wxPython. It is compact and full-featured, especially suitable for Python beginners.
Ulipad download address: http://code.google.com/p/ulipad/downloads/list
Author's homepage: http://hi.baidu.com/limodou/home
1. First install Python
Python download address: http://www.python.org/ftp/python/
The version we use here is python-2.7.2.msi
Double-click to install, we install to D:\Python.
2. Install Ulipad
Download address: http://code.google.com/p/ulipad/downloads/list
Download the compressed package and extract it to any folder. Such as D:\Ulipad
3. Install wxPython module
Download address: http://www.wxpython.org/download.php#stable
We choose wxPython2.8-win32-unicode-2.8.12.1-py27.exe here, which corresponds to Python 2.7 version.
4. Install comtypes module
Download address: http://sourceforge.net/projects/comtypes/
The latest version is comtypes-0.6.2.win32.exe, double-click to install.
5. UliPad execution
In the Ulipad directory, double-click UliPad.pyw to execute and open the Ulipad editor.
6. Configure Ulipad
Open Ulipad, select menu=>Edit=>Parameters=>Python=>Set Python interpreter=>Add
Enter the interpreter path. You can manually select the python.exe file in the Python installation folder. The description is set to 2.7 console
Add a new Pythonw.exe in the Python folder and describe it as 2.7 window. Finalize and complete.
Related documents: Eclipse+PyDev installation and configuration
The above is the detailed content of Install Ulipad editor on Windows system. For more information, please follow other related articles on the PHP Chinese website!