Skip to Content
Menú
This question has been flagged
4 Respostes
22487 Vistes

  How can i uinstall module from command line 

i'm using odoo 11 in ubuntu 16.04    

Avatar
Descartar
Best Answer

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

Avatar
Descartar
Best Answer

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';

Avatar
Descartar
Best Answer
  • 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()

Avatar
Descartar
Best Answer

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
Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
de maig 22
3162
1
de març 21
3176
0
de gen. 21
1857
1
d’ag. 20
6127
3
de març 19
3279