mirror of
https://github.com/muziing/Py2exe-GUI.git
synced 2025-01-13 16:42:54 +08:00
muzing
5148b8a668
Version
0.1.8
修复:打包子进程工作目录错误、PyInstaller调用失败时无任何反馈; 优化:常量使用枚举值、优化参数传递、优化`SubProcessTool`工具类; 新增:英文版“关于”页;
Easy-to-use Python GUI packaging tool
English | 简体中文
Introduction
Py2exe-GUI is a assist tool based on PySide6, designed to provide a complete yet easy-to-use GUI for PyInstaller.
It has the following features:
- All options of PyInstaller are supported.
- Call any local Python interpreter with the correspoding environment. No need for repeat installations.(Not realized yet)
- Cross-platform, supports Windows, Linux and MacOS.
How to use
Note: Py2exe-GUI is still in the early development stage, the way of using it may change frequently, so please check this instruction frequently.
Option A: Install with pip
First, install PyInstaller in the Python interpreter environment which to be packaged:
pip install pyinstaller==5.7.0
Then install Py2exe-GUI with pip
:
pip install py2exe-gui
Run:
python -m py2exe_gui
Option B: Run through source code
Clone repo:
git clone https://github.com/muziing/Py2exe-GUI.git
Install Poetry and create a virtual environment:
poetry init
Install the dependencies:
poetry install
Run Py2exe-GUI.py:
cd src
python Py2exe-GUI.py
Structure
All source code is in the py2exe_gui directory.
License
Py2exe-GUI
Copyright (C) 2022 muzing
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Description
Languages
Python
100%