コンテンツへスキップ
メニュー
この質問にフラグが付けられました
4 返信
22667 ビュー

  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
アバター
破棄
関連投稿 返信 ビュー 活動
0
5月 22
3257
1
3月 21
3270
0
1月 21
1933
1
8月 20
6210
3
3月 19
3416