device-automation-bus / dab-compliance-suite

Compliance Testing Suite for DAB.
https://getdab.org/
3 stars 10 forks source link

Install on Ubuntu 23.04 #45

Open asaka-xperi opened 7 months ago

asaka-xperi commented 7 months ago

Pip support was dropped in Ubuntu 23.04. This can be solved using venv, here is an example of how:

sudo apt install python3-venv
python3 -m venv ~/.venv/python

~/.venv/python/bin/pip3 install -r requirements.txt

When running, point to the venv python version: ~/.venv/python/bin/python3 main.py ...