Installation & Related - alejandroautalan/pygubu-designer GitHub Wiki
Installation with pip
At the command-line, terminal or shell, run the following command.
pip install pygubu-designer
Upgrade
From time to time, we release a new version with bug fixes and new features. Run the following command to upgrade.
pip install pygubu-designer -U
Removal
Run the following, should you ever want to remove the program.
pip uninstall pygubu-designer
What is pip, you say?
Pip is the package installer for Python.
Installation with pipx
If you are using debian 12 or above, pip can't be used without a virtual environment. As an alternative you can use pipx.
sudo apt install pipx
Install
pipx install pygubu-designer
Upgrade
pipx upgrade pygubu-designer
Removal
pipx uninstall pygubu-designer
Installing from github
If you want to try the latest development version, install from github using the following commands:
# Create a virtual environment (use your preferred tool here)
python3 -m venv test-venv
source test-venv/bin/activate
# Install development versions
pip install git+https://github.com/alejandroautalan/pygubu.git
pip install git+https://github.com/alejandroautalan/pygubu-designer.git