Run the LPI Exam Simulator on Linux (and most Unix-like systems).
From the repository root:
./linux/run.shOr from anywhere:
/path/to/lpi/linux/run.shThe script finds the repo root, checks for qst.txt, and runs the PyQt6 app. It uses .venv or venv if present, otherwise system python3.
-
Clone and enter the repo
git clone https://github.com/anpa1200/lpi.git cd lpi -
Optional: virtual environment
python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt -
Make launcher executable (if needed)
chmod +x linux/run.sh
-
Run
./linux/run.sh
For the pure-Bash exam script (no Python):
chmod +x examLPI.sh
./examLPI.sh- Python 3.8+ and PyQt6 for the GUI (
LPIExam.py). - Bash 4+ for
examLPI.sh.