问题
How can i uninstall / update a module from command line in odoo 11 ? i'm using ubuntu 16.04
.
回答1:
To update module navigate to odoo folder which contains odoo-bin file then run command
./odoo-bin -u your_module -c /etc/your-odoo.conf
To update all module you can use
./odoo-bin -u all -c /etc/your-odoo.conf
you can also select which database by including -d database_name before -u in command
来源:https://stackoverflow.com/questions/56833832/how-to-uninstall-update-a-module-from-command-line-odoo-11