Tag

Executable

0 views collected around this technical thread.

macrozheng
macrozheng
Jun 3, 2025 · Operations

How to Turn Your Java Swing App into a Standalone Executable (No JRE Needed)

This article compares five Java packaging methods—GraalVM, JLink, Exe4J, batch scripts, and plain JAR—detailing their pros and cons, then introduces a custom WinForm tool that bundles Swing applications into self‑contained executable files, complete with code examples and deployment steps.

ExecutableGraalVMJLink
0 likes · 8 min read
How to Turn Your Java Swing App into a Standalone Executable (No JRE Needed)
Python Programming Learning Circle
Python Programming Learning Circle
May 24, 2025 · Backend Development

Using auto-py-to-exe to Package Python Programs into Executable Files

This tutorial explains what auto-py-to-exe is, how to install it, details its key configuration options, and demonstrates the complete packaging process with a simple calculator project, enabling Python scripts to be turned into standalone executables.

ExecutablePythonTutorial
0 likes · 6 min read
Using auto-py-to-exe to Package Python Programs into Executable Files
Architecture Digest
Architecture Digest
Dec 11, 2024 · Operations

Packaging Java Swing Applications into Executable Binaries: Options and Comparison

This article reviews several methods for distributing Java Swing applications as standalone executables—including GraalVM native images, JLink, Exe4J, batch scripts, and plain JAR distribution—compares their advantages and drawbacks, and demonstrates a custom WinForm packaging tool with example Maven and source code.

ExecutableGraalVMJLink
0 likes · 8 min read
Packaging Java Swing Applications into Executable Binaries: Options and Comparison
macrozheng
macrozheng
Nov 18, 2024 · Backend Development

How to Turn Java Swing Apps into Standalone Executables: A Practical Guide

This article explores Java Swing packaging challenges, compares five distribution methods—including GraalVM, JLink, and Exe4J—highlights their pros and cons, and demonstrates a custom WinForm tool that bundles a Swing program with a minimal JRE into a double‑clickable executable.

ExecutableGraalVMJLink
0 likes · 8 min read
How to Turn Java Swing Apps into Standalone Executables: A Practical Guide
Python Programming Learning Circle
Python Programming Learning Circle
Oct 11, 2024 · Backend Development

Building a Python WeChat Message Sender with itchat and PyInstaller

This tutorial explains how to set up a Python environment, install the itchat and pyinstaller libraries, write a script that logs into WeChat and sends repeated messages to a specified contact, and then package the script into a standalone executable file.

AutomationExecutablePython
0 likes · 3 min read
Building a Python WeChat Message Sender with itchat and PyInstaller
Test Development Learning Exchange
Test Development Learning Exchange
Jul 6, 2024 · Fundamentals

How to Package a Python GUI Application with Dependencies Using PyInstaller

This guide explains how to structure a Python project, list required libraries in requirements.txt, write a main script that installs dependencies at runtime, and use PyInstaller to bundle the application and its assets into a single executable that automatically installs needed packages.

DependenciesExecutableGUI
0 likes · 5 min read
How to Package a Python GUI Application with Dependencies Using PyInstaller
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2024 · Fundamentals

How to Decompile a Python .exe Back to Python Source Code

This guide explains how to extract .pyc files from a Python‑generated executable, restore missing bytecode headers, and use tools such as pyinstxtractor, pyi‑archive_viewer, and uncompyle6 to decompile the bytecode back into readable Python scripts while highlighting common pitfalls and protection mechanisms.

BytecodeExecutablePython
0 likes · 12 min read
How to Decompile a Python .exe Back to Python Source Code
Python Programming Learning Circle
Python Programming Learning Circle
Mar 4, 2024 · Backend Development

How to Use auto-py-to-exe to Package Python Programs into Executable Files

This article explains what auto-py-to-exe is, how to install it, describes its key configuration options, and walks through a complete example of packaging a simple Python calculator into a single executable, while also offering tips for handling additional files and icons.

ExecutableGUIauto-py-to-exe
0 likes · 6 min read
How to Use auto-py-to-exe to Package Python Programs into Executable Files
Python Programming Learning Circle
Python Programming Learning Circle
Sep 26, 2023 · Backend Development

How to Package Python Scripts into Executable Files Using Various Tools

This article explains several methods for converting Python scripts into standalone executables—including pyinstaller, cx_Freeze, py2exe, py2app, Nuitka, and a combination of Nuitka with pyinstaller—detailing their commands, platform support, advantages, and common pitfalls such as missing imports and GIL-related issues.

Executablecx_Freezenuitka
0 likes · 7 min read
How to Package Python Scripts into Executable Files Using Various Tools
Python Programming Learning Circle
Python Programming Learning Circle
Sep 6, 2023 · Backend Development

Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide

This article compares PyInstaller and Nuitka for converting Python projects into standalone executables, shares practical experiences—including size and speed differences—and provides a detailed installation and command‑line guide for Nuitka with code examples and post‑build dependency handling.

Executablenuitkapackaging
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide
Python Programming Learning Circle
Python Programming Learning Circle
Nov 11, 2022 · Backend Development

How to Use auto-py-to-exe to Package Python Programs into Executables

auto-py-to-exe is a GUI front‑end for PyInstaller that simplifies packaging Python scripts into standalone executables; this guide explains installation, key configuration options such as script location, one‑file mode, console window, icon, additional files, and demonstrates a complete example by packaging a simple calculator program.

ExecutableGUIPython
0 likes · 7 min read
How to Use auto-py-to-exe to Package Python Programs into Executables
Python Programming Learning Circle
Python Programming Learning Circle
May 19, 2022 · Fundamentals

How to Package a PyQt5 Application into an Executable with PyInstaller

This guide walks through preparing a PyQt5 project, installing PyInstaller, generating and configuring the .spec file, and using PyInstaller commands to build a standalone Windows executable, including tips for handling console windows and embedding resources.

ExecutablePyQt5Python
0 likes · 4 min read
How to Package a PyQt5 Application into an Executable with PyInstaller
Selected Java Interview Questions
Selected Java Interview Questions
Mar 2, 2022 · Backend Development

How to Package a Spring Boot Application into an Executable Installer Using exe4j and Inno Setup

This tutorial walks through converting a functional Spring Boot JAR into a Windows executable with exe4j, bundling a local JRE, and then creating a user‑friendly installer using Inno Setup, providing step‑by‑step screenshots and configuration details to avoid common pitfalls.

ExecutableInno SetupInstaller
0 likes · 5 min read
How to Package a Spring Boot Application into an Executable Installer Using exe4j and Inno Setup
Python Programming Learning Circle
Python Programming Learning Circle
Dec 8, 2021 · Backend Development

Using PyInstaller and Nuitka to Package Python Projects into Executables

This article compares PyInstaller and Nuitka for converting Python scripts into standalone Windows executables, discusses their advantages and drawbacks, provides step‑by‑step installation of Nuitka, explains key command‑line options, and demonstrates a practical example that yields a tiny, fast‑building executable versus a large, slow‑building PyInstaller output.

CLIExecutablePython
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Projects into Executables
Python Programming Learning Circle
Python Programming Learning Circle
Nov 15, 2021 · Backend Development

Creating a Python Executable for Daily Inspirational Quotes Using EasyGUI and PyInstaller

This tutorial explains how to scrape daily inspirational or love quotes from a Chinese website with Python, display them using EasyGUI, and package the script into a standalone executable using PyInstaller, including troubleshooting tips for common packaging errors.

ExecutableTutorialeasygui
0 likes · 4 min read
Creating a Python Executable for Daily Inspirational Quotes Using EasyGUI and PyInstaller
Python Programming Learning Circle
Python Programming Learning Circle
Oct 6, 2021 · Backend Development

How to Use auto-py-to-exe to Package Python Programs

This tutorial explains what auto-py-to-exe is, how to install it, describes its key configuration options, and walks through a step‑by‑step example of packaging a simple Python calculator into a standalone executable, including handling additional files and icons.

ExecutablePythonTutorial
0 likes · 5 min read
How to Use auto-py-to-exe to Package Python Programs
Top Architect
Top Architect
Aug 23, 2021 · Backend Development

How to Package a Spring Boot Application into an Executable (EXE) Using exe4j and Inno Setup

This guide walks through converting a Spring Boot JAR into a Windows executable using exe4j, configuring the EXE for 32/64‑bit compatibility, adding VM parameters, and then packaging the EXE together with a local JRE into an installer with Inno Setup, providing step‑by‑step screenshots and script details.

ExecutableInno SetupJava packaging
0 likes · 5 min read
How to Package a Spring Boot Application into an Executable (EXE) Using exe4j and Inno Setup
360 Tech Engineering
360 Tech Engineering
Nov 15, 2019 · Backend Development

Packaging Node.js Applications into Executable Files with pkg

This tutorial explains how to use the pkg tool to bundle a Node.js script into a standalone executable for Windows, macOS, and Linux, covering installation, sample code, configuration, and command‑line options to distribute applications without requiring a separate Node.js runtime.

CLIExecutableJavaScript
0 likes · 6 min read
Packaging Node.js Applications into Executable Files with pkg