From 7f8fd7908e40a39b27f22bfe341096a51bcf7b26 Mon Sep 17 00:00:00 2001 From: Yenthe Van Ginneken Date: Mon, 14 Oct 2019 09:44:56 +0200 Subject: [PATCH] [FIX] odoo_install: add missing Python libraries for enterprise install Odoo 13 introduced some new apps/dependencies that where not yet added. As the enterprise repository has no requirements.txt file I've added the extra dependencies under the pip3 command. These will only be installed if you've checked on the enterprise option in the script. --- odoo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index c005c55..86c7967 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -126,7 +126,7 @@ if [ $IS_ENTERPRISE = "True" ]; then echo -e "\n---- Added Enterprise code under $OE_HOME/enterprise/addons ----" echo -e "\n---- Installing Enterprise specific libraries ----" - sudo pip3 install num2words ofxparse + sudo pip3 install num2words ofxparse dbfread ebaysdk firebase_admin pyOpenSSL sudo npm install -g less sudo npm install -g less-plugin-clean-css fi