Luckyy
Administrator
Staff
LEVEL 4
90 XP
This tool lets you easily convert your Python (.py) scripts into standalone Windows executable (.exe) files using PyInstaller.
Step 1: Add Python Scripts
- Drag and drop one or multiple Python `.py` files into the file list area (the tree view).
- Each file will appear in the list with a checkbox. Checked files are selected for conversion.
Step 2: Select Files to Convert
- Check the box next to each Python script you want to convert.
- To select all files quickly, right-click inside the file list and choose "Select All".
Step 3: Convert to EXE
- Click the Convert to EXE button or right-click and select "Convert Batch" to convert all checked files.
- You can also right-click a single file and select "Convert Single" to convert just that one script.
Step 4: View Conversion Log
- The output log box below the file list shows PyInstaller's progress, messages, and any errors during conversion.
- Wait until you see "Conversion finished" messages for each file.
Step 5: Find Your Executables
- Converted `.exe` files will be saved in a `dist` folder located next to your original `.py` script.
- For example, if your script is `C:\Scripts\myapp.py`, the EXE will be in `C:\Scripts\dist\myapp.exe`.
Additional Tips
- Make sure Python and PyInstaller are installed and available in your system PATH.
- The tool runs PyInstaller commands silently and shows output in the log.
- Use the "Select All" feature to batch convert many scripts easily.
- Check the log for errors if conversion fails; common issues involve missing Python modules or syntax errors.
Installing PyInstaller
1. Open Command Prompt (CMD) on your Windows PC.
2. Run the following command to install PyInstaller via pip:
3. Wait for the installation to complete.
4. You can verify the installation by running:
If the command returns the version number, PyInstaller is installed correctly.
Step 1: Add Python Scripts
- Drag and drop one or multiple Python `.py` files into the file list area (the tree view).
- Each file will appear in the list with a checkbox. Checked files are selected for conversion.
Step 2: Select Files to Convert
- Check the box next to each Python script you want to convert.
- To select all files quickly, right-click inside the file list and choose "Select All".
Step 3: Convert to EXE
- Click the Convert to EXE button or right-click and select "Convert Batch" to convert all checked files.
- You can also right-click a single file and select "Convert Single" to convert just that one script.
Step 4: View Conversion Log
- The output log box below the file list shows PyInstaller's progress, messages, and any errors during conversion.
- Wait until you see "Conversion finished" messages for each file.
Step 5: Find Your Executables
- Converted `.exe` files will be saved in a `dist` folder located next to your original `.py` script.
- For example, if your script is `C:\Scripts\myapp.py`, the EXE will be in `C:\Scripts\dist\myapp.exe`.
Additional Tips
- Make sure Python and PyInstaller are installed and available in your system PATH.
- The tool runs PyInstaller commands silently and shows output in the log.
- Use the "Select All" feature to batch convert many scripts easily.
- Check the log for errors if conversion fails; common issues involve missing Python modules or syntax errors.
Installing PyInstaller
1. Open Command Prompt (CMD) on your Windows PC.
2. Run the following command to install PyInstaller via pip:
Code:
pip install pyinstaller
3. Wait for the installation to complete.
4. You can verify the installation by running:
Code:
pyinstaller --version
If the command returns the version number, PyInstaller is installed correctly.
Last edited: