How To Uninstall / Update A Module From Command Line Odoo 11
How can i uninstall / update a module from command line in odoo 11 ? i'm using ubuntu 16.04.
Solution 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
Post a Comment for "How To Uninstall / Update A Module From Command Line Odoo 11"