Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
4 Відповіді
22674 Переглядів

  How can i uinstall module from command line 

i'm using odoo 11 in ubuntu 16.04    

Аватар
Відмінити
Найкраща відповідь

No, there is no command for uninstall module from the command line.

ref: https://github.com/odoo/odoo/pull/12373, https://github.com/odoo/odoo/issues/15687

Аватар
Відмінити
Найкраща відповідь

Hi,

Can you try the following

step-1:       Goto Terminal>Type sudo su postgres

step-2:        Type "psql database_name"

step-3:        update ir_module_module set state='to remove' where name='module_name' and state='installed';

Аватар
Відмінити
Найкраща відповідь
  • run ./odoo-bin shell -c xyz.conf -d test_db



  • Search module by using bellow script self.env['ir.module.module'].search([('name','=','module_name')])  then you get the result like "ir.module.module(1060,)"
  • Uninstall module using button_immediate_uninstall() function 

self.env['ir.module.module'].search([('name','=','module_name')]).button_immediate_uninstall()

Аватар
Відмінити
Найкраща відповідь

Hi,

There is no option in odoo to uninstall module through command line check 

./odoo-bin --help for possible option in command line
found similar question link
Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
трав. 22
3270
1
бер. 21
3283
0
січ. 21
1938
1
серп. 20
6217
3
бер. 19
3423