Installation with Python 3 using PIP
You can install the PyOdoo Python package from PIP repository using:
python3 -m pip install pyodoo
You can install the downloaded Wheel package (.whl) using:
cd "~/folder with the downloaded file"
python3 -m pip install pyodoo-versione-*.whl
If you prefer to use the source code package you can extract and install it using:
cd "~/folder with the downloaded file"
tar xzf "pyodoo-version.pkg.tar.gz"
python3 -m pip install -e "pyodoo-version"
To uninstall the package later you can use:
python3 -m pip uninstall pyodoo
Installation on Arch Linux and derivatives
In the AUR you can find the latest available version, it can be downloaded and built using yay (or a similar AUR helper) using yay -S python-pyodoo and then following the AUR helper instructions.
It's possible to download the tar.zst package from the Download page and install it using:
cd "~/folder with the downloaded file"
sudo pacman -U "python-pyodoo-version.tar.zst"