Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 1.23 KB

WinDev.md

File metadata and controls

33 lines (18 loc) · 1.23 KB

Uniblow development on Windows

The following instructions commands are given to run uniblow from the source on the Windows system. This can also be used for development purpose.

There are specific instructions and scripts to build uniblow binaries for the Windows, Debian and MacOS platforms in the Build document.

In Windows, you can easily run the binaries provided. The following instructions here are only to run Uniblow from the Python source code, for development purpose.

Install dependencies

  • For the GUI, Install WxPython.

    • Install Python3.9,

    • Then run python -m pip install wxPython==4.2.1

  • Download the Uniblow source code

    with git : git clone https://github.com/bitlogik/uniblow.git

    Zip without git : Download here

Install and run uniblow

  • In the uniblow directory, install the uniblow package and its dependencies (or use venv)

    • python -m pip install .
  • Run with python uniblow.py -v

The '-v' argument enables the debug logging output for more verbose terminal output.