vendor_report/INSTALL_WINE.md
2025-11-05 22:40:20 +04:00

559 B

Installing Wine for Windows Builds

To build Windows executables from Linux, you need Wine installed.

Quick Install (Ubuntu/Debian):

sudo apt-get update
sudo apt-get install wine
winetricks python39

Then run:

./build_windows.sh

Alternative: Use GitHub Actions

Push to GitHub and the workflow will automatically build Windows executables.

Or: Build on Windows Machine

Copy project to Windows and run:

pip install pyinstaller
pip install -r requirements_build.txt
pyinstaller build_executable.spec --clean