-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Description
After installing Odoo 16 via the script, OCA/l10n_br was downloaded to the custom addons folder already created by the script.
Even running sudo -H pip3 install -r https://github.com/OCA/l10n-brazil/raw/16.0/requirements.txt
When restarting Odoo, the server does not start, displaying the following error log:
2025-10-06 19:52:27,772 12051 INFO XXX_prd_db odoo.addons.base.models.ir_cron: Job payment: post-process transactions done.
2025-10-06 19:52:36,450 12051 INFO XXX_prd_db odoo.addons.base.models.ir_module: ALLOW access to module.button_immediate_install on ['Brazilian Localization Base'] to user luka@XXX.com.br #2 via 172.16.0.4
2025-10-06 19:52:36,450 12051 INFO XXX_prd_db odoo.addons.base.models.ir_module: User #2 triggered module installation
2025-10-06 19:52:36,451 12051 INFO XXX_prd_db odoo.addons.base.models.ir_module: ALLOW access to module.button_install on ['Brazilian Localization Base'] to user luka@XXX.com.br #2 via 172.16.0.4
2025-10-06 19:52:36,469 12051 WARNING XXX_prd_db odoo.modules.module: DistributionNotFound: The 'erpbrasil.base>=2.3.0' distribution was not found and is required by the application
2025-10-06 19:52:36,471 12051 WARNING XXX_prd_db odoo.http: Cannot install module "l10n_br_base" because an external dependency was not met: Python library not installed: erpbrasil.base>=2.3.0
2025-10-06 19:52:36,471 12051 INFO XXX_prd_db werkzeug: 172.16.0.4 - - [06/Oct/2025 19:52:36] "POST /web/dataset/call_button HTTP/1.1" 200 - 16 0.002 0.021
2025-10-06 19:54:14,148 12051 INFO ? odoo.service.server: Initiating shutdown
2025-10-06 19:54:14,148 12051 INFO ? odoo.service.server: Hit CTRL-C again or send a second signal to force the shutdown.
2025-10-06 19:54:14,692 12051 INFO ? odoo.sql_db: ConnectionPool(used=0/count=0/max=64): Closed 8 connections.
I downloaded requirements.txt and ran it again, and all dependencies are properly marked as "Requirement already satisfied."
But I still get the 'Python library not installed' error. What's the solution?