From 1e637b506f085414627df4c0a8bf9af88b1da25e Mon Sep 17 00:00:00 2001 From: Marcel Walter Date: Sun, 26 Oct 2025 01:48:30 +0200 Subject: [PATCH] add dependencis --- install/odoo-install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install/odoo-install.sh b/install/odoo-install.sh index 44fd5a19b..460f50f85 100644 --- a/install/odoo-install.sh +++ b/install/odoo-install.sh @@ -15,8 +15,13 @@ update_os msg_info "Installing Dependencies" $STD apt install -y python3-lxml +$STD apt install -y python3-ldap +$STD apt install -y python3-xlwt +$STD apt install -y python3-num2words curl -fsSL "http://archive.ubuntu.com/ubuntu/pool/universe/l/lxml-html-clean/python3-lxml-html-clean_0.1.1-1_all.deb" -o /opt/python3-lxml-html-clean.deb $STD dpkg -i /opt/python3-lxml-html-clean.deb +curl -fsSL "http://archive.ubuntu.com/ubuntu/pool/universe/v/vatnumber/python3-vatnumber_1.2-9_all.deb" -o /opt/python3-vatnumber.deb +$STD dpkg -i /opt/python3-vatnumber.deb msg_ok "Installed Dependencies" PG_VERSION="13.16" setup_postgresql @@ -32,7 +37,8 @@ LATEST_VERSION=$(curl -fsSL "https://nightly.odoo.com/${RELEASE}/nightly/deb/" | msg_info "Setup Odoo $RELEASE with $LATEST_VERSION" curl -fsSL "https://nightly.odoo.com/${RELEASE}/nightly/deb/odoo_${LATEST_VERSION}_all.deb" -o /opt/odoo.deb -$STD apt install -y /opt/odoo.deb +#$STD apt install -y /opt/odoo.deb +$STD dpkg -i /opt/odoo.deb msg_ok "Setup Odoo $RELEASE with $LATEST_VERSION" msg_info "Setup PostgreSQL Database"