From 1b88837c6886514edd315a053f2e30931d8189d6 Mon Sep 17 00:00:00 2001 From: Yenthe Van Ginneken Date: Tue, 19 May 2020 14:04:42 +0200 Subject: [PATCH] [FIX] odoo_install: add libjpeg-dev for Ubuntu 20.04 --- odoo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index 517a568..a7d2617 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -75,7 +75,7 @@ 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 build-essential wget python3-dev python3-venv python3-wheel libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libpng12-0 gdebi -y +sudo apt-get install git python3 python3-pip build-essential wget python3-dev python3-venv python3-wheel libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libpng12-0 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