I am restoring a database with several addons installed. How I can install all external dependencies?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I am restoring a database with several addons installed. How I can install all external dependencies?
Hi,
If you have a requirments.text file, you can install the packages as follows: pip install -r requirments.text
If not, you have to see which all are the needed packages and install one by one manually.
Thanks