From 30b0490c3a643eafe69d2299f4367fec573697c0 Mon Sep 17 00:00:00 2001 From: Yenthe Van Ginneken Date: Mon, 17 Oct 2022 11:23:04 +0200 Subject: [PATCH] [IMP] odoo_install: trigger Py3/pip install first --- odoo_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index a736e35..b744cb9 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -75,7 +75,8 @@ sudo su - postgres -c "createuser -s $OE_USER" 2> /dev/null || true # Install Dependencies #-------------------------------------------------- echo -e "\n--- Installing Python 3 + pip3 --" -sudo apt-get install git python3 python3-pip python3-cffi build-essential wget python3-dev python3-venv python3-wheel libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libpng-dev libjpeg-dev gdebi -y +sudo apt-get install python3 python3-pip +sudo apt-get install git python3-cffi build-essential wget python3-dev python3-venv python3-wheel libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libpng-dev libjpeg-dev gdebi -y echo -e "\n---- Install python packages/requirements ----" sudo -H pip3 install -r https://github.com/odoo/odoo/raw/${OE_VERSION}/requirements.txt