[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.
pull/197/head
Yenthe Van Ginneken 6 years ago committed by GitHub
parent ed82d49037
commit 7f8fd7908e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -126,7 +126,7 @@ if [ $IS_ENTERPRISE = "True" ]; then
echo -e "\n---- Added Enterprise code under $OE_HOME/enterprise/addons ----" echo -e "\n---- Added Enterprise code under $OE_HOME/enterprise/addons ----"
echo -e "\n---- Installing Enterprise specific libraries ----" 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
sudo npm install -g less-plugin-clean-css sudo npm install -g less-plugin-clean-css
fi fi

Loading…
Cancel
Save