A GUI written in Python meant to simplify QEMU usage and to provide extra functionality for interacting with simulations. Uses QMP to interact with QEMU.
To setup and test the GUI in a Python virtual environment in development/editable mode simply run the commands below:
python3 -m venv venv
source ./venv/bin/activate
pip3 install -e .
itc-qemu-gui
In order to create a release package installable via pip, execute the following command:
python3 setup.py sdist --formats=gztar,zip
Alternatively, you can use the provided startup script to create the development environment automatically and run the GUI.
sh ./startup.sh
The release can be installed via the generated package in a Python virtual environment using the following commands:
python3 -m venv venv
source ./venv/bin/activate
pip3 install ./itc_qemu_gui-<VERSION>.tar.gz